Skip to content

Commit d604063

Browse files
committed
Switched to version 3.6.1
1 parent 7adf5c4 commit d604063

4 files changed

Lines changed: 9 additions & 5 deletions

File tree

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# List of Changes
22

3+
## Version 3.6.1
4+
5+
- 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.
6+
37
## Version 3.6.0
48

59
### Hotfix - 12/2/2020

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ cmake_minimum_required(VERSION 3.12)
1111
# 4. SEAL C++ tests #
1212
###################################################
1313

14-
project(SEAL VERSION 3.6.0 LANGUAGES CXX C)
14+
project(SEAL VERSION 3.6.1 LANGUAGES CXX C)
1515

1616
########################
1717
# Global configuration #

native/examples/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33

44
cmake_minimum_required(VERSION 3.12)
55

6-
project(SEALExamples VERSION 3.6.0 LANGUAGES CXX)
6+
project(SEALExamples VERSION 3.6.1 LANGUAGES CXX)
77

88
# If not called from root CMakeLists.txt
99
if(NOT DEFINED SEAL_BUILD_EXAMPLES)
1010
set(SEAL_BUILD_EXAMPLES ON)
1111

1212
# Import Microsoft SEAL
13-
find_package(SEAL 3.6.0 EXACT REQUIRED)
13+
find_package(SEAL 3.6.1 EXACT REQUIRED)
1414

1515
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/bin)
1616
endif()

native/tests/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33

44
cmake_minimum_required(VERSION 3.12)
55

6-
project(SEALTest VERSION 3.6.0 LANGUAGES CXX C)
6+
project(SEALTest VERSION 3.6.1 LANGUAGES CXX C)
77

88
# If not called from root CMakeLists.txt
99
if(NOT DEFINED SEAL_BUILD_TESTS)
1010
set(SEAL_BUILD_TESTS ON)
1111

1212
# Import Microsoft SEAL
13-
find_package(SEAL 3.6.0 EXACT REQUIRED)
13+
find_package(SEAL 3.6.1 EXACT REQUIRED)
1414

1515
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/${OUTLIB_PATH})
1616
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/bin)

0 commit comments

Comments
 (0)