From d6040632780981f3ab61969025d333d394eb2aeb Mon Sep 17 00:00:00 2001 From: Kim Laine Date: Mon, 7 Dec 2020 19:15:47 -0800 Subject: [PATCH] Switched to version 3.6.1 --- CHANGES.md | 4 ++++ CMakeLists.txt | 2 +- native/examples/CMakeLists.txt | 4 ++-- native/tests/CMakeLists.txt | 4 ++-- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index c283d4e4d..f54ed7e95 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,9 @@ # List of Changes +## Version 3.6.1 + +- Fixed a bug reported in [(Issue 248)](https://github.com/microsoft/SEAL/issues/248) and [(Issue 249)](https://github.com/microsoft/SEAL/issues/249): in in-place Zstandard compression the input buffer head location was not correctly updated, resulting in huge memory use. + ## Version 3.6.0 ### Hotfix - 12/2/2020 diff --git a/CMakeLists.txt b/CMakeLists.txt index 8955acc4b..610baef7e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,7 +11,7 @@ cmake_minimum_required(VERSION 3.12) # 4. SEAL C++ tests # ################################################### -project(SEAL VERSION 3.6.0 LANGUAGES CXX C) +project(SEAL VERSION 3.6.1 LANGUAGES CXX C) ######################## # Global configuration # diff --git a/native/examples/CMakeLists.txt b/native/examples/CMakeLists.txt index ed6544360..98d5ca9ea 100644 --- a/native/examples/CMakeLists.txt +++ b/native/examples/CMakeLists.txt @@ -3,14 +3,14 @@ cmake_minimum_required(VERSION 3.12) -project(SEALExamples VERSION 3.6.0 LANGUAGES CXX) +project(SEALExamples VERSION 3.6.1 LANGUAGES CXX) # If not called from root CMakeLists.txt if(NOT DEFINED SEAL_BUILD_EXAMPLES) set(SEAL_BUILD_EXAMPLES ON) # Import Microsoft SEAL - find_package(SEAL 3.6.0 EXACT REQUIRED) + find_package(SEAL 3.6.1 EXACT REQUIRED) set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/bin) endif() diff --git a/native/tests/CMakeLists.txt b/native/tests/CMakeLists.txt index a56ae13bb..3736e4114 100644 --- a/native/tests/CMakeLists.txt +++ b/native/tests/CMakeLists.txt @@ -3,14 +3,14 @@ cmake_minimum_required(VERSION 3.12) -project(SEALTest VERSION 3.6.0 LANGUAGES CXX C) +project(SEALTest VERSION 3.6.1 LANGUAGES CXX C) # If not called from root CMakeLists.txt if(NOT DEFINED SEAL_BUILD_TESTS) set(SEAL_BUILD_TESTS ON) # Import Microsoft SEAL - find_package(SEAL 3.6.0 EXACT REQUIRED) + find_package(SEAL 3.6.1 EXACT REQUIRED) set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/${OUTLIB_PATH}) set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/bin)