From 6fcc25b83e096e81f644c570ec416f0a76c6a2a1 Mon Sep 17 00:00:00 2001 From: "Kim Laine (HE/HIM)" Date: Wed, 15 May 2024 10:28:29 -0700 Subject: [PATCH] Release 4.1.2 --- CHANGES.md | 7 +++++++ CMakeLists.txt | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 8c4107c7..a77d26df 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,12 @@ # List of Changes +## Version 4.1.2 + +- Merged [(PR #619)](https://github.com/microsoft/SEAL/pull/619): Removed unqualified calls to `std::move`. +- Merged [(PR #651)](https://github.com/microsoft/SEAL/pull/651): Fixed filename typos in native examples. +- Merged [(PR #662)](https://github.com/microsoft/SEAL/pull/662) and [(PR #666)](https://github.com/microsoft/SEAL/pull/666): Fixed broken links in [README.md](README.md). +- Merged [(PR #669)](https://github.com/microsoft/SEAL/pull/669): Removed extra semicolons that caused compiler warnings. + ## Version 4.1.1 ### Bug Fixes diff --git a/CMakeLists.txt b/CMakeLists.txt index 1a7a2bfd..41e97aba 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -23,7 +23,7 @@ if(NOT CMAKE_BUILD_TYPE) endif() message(STATUS "Build type (CMAKE_BUILD_TYPE): ${CMAKE_BUILD_TYPE}") -project(SEAL VERSION 4.1.1 LANGUAGES CXX C) +project(SEAL VERSION 4.1.2 LANGUAGES CXX C) ######################## # Global configuration #