From 6d2bd98d54ea93df11fe80493b9c308bff6fc312 Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Thu, 14 Apr 2022 11:21:11 +0200 Subject: [PATCH] Bump version to 3.0.13 --- CHANGELOG.md | 6 ++++++ CMakeLists.txt | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8310fd9..adf3124 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog for the optimized Picnic implementation +## Version 3.0.13 -- 2022-04-15 + +* Add the `plain32` implementation of SHAKE and automatically enable it for 32-bit targets. +* Avoid `__builtin_cpu_supports` on Apple as support is spotty. +* Reduce memory usage. + ## Version 3.0.12 -- 2022-03-29 * Improve matrix multiplication for L5 instances on AVX2. This improves the performance of Picnic-L5-{FS,UR} by up to 5 %. diff --git a/CMakeLists.txt b/CMakeLists.txt index ca5d0b3..5512ef0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,7 +12,7 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON) # project info set(PICNIC_MAJOR_VERSION 3) set(PICNIC_MINOR_VERSION 0) -set(PICNIC_PATCH_VERSION 12) +set(PICNIC_PATCH_VERSION 13) set(PICNIC_VERSION ${PICNIC_MAJOR_VERSION}.${PICNIC_MINOR_VERSION}.${PICNIC_PATCH_VERSION}) project(picnic LANGUAGES C CXX VERSION ${PICNIC_VERSION})