Skip to content

Commit

Permalink
Switched to version 3.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kimlaine committed Dec 8, 2020
1 parent 7adf5c4 commit d604063
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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 #
Expand Down
4 changes: 2 additions & 2 deletions native/examples/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
4 changes: 2 additions & 2 deletions native/tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit d604063

Please sign in to comment.