Skip to content

Commit

Permalink
Changed version to 3.4.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
kimlaine committed Oct 30, 2019
1 parent 705a671 commit 6401574
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Changes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# List of Changes

## Version 3.4.3 -- Hotfix
## Version 3.4.4

- Fixed issues with `SEALNet.targets` file and `SEALNet.nuspec.in`.
- Updated `README.md` with information about existing multi-platform
Expand Down
4 changes: 2 additions & 2 deletions dotnet/native/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@

cmake_minimum_required(VERSION 3.12)

project(SEALNetNative VERSION 3.4.3 LANGUAGES CXX C)
project(SEALNetNative VERSION 3.4.4 LANGUAGES CXX C)

# Import Microsoft SEAL
find_package(SEAL 3.4.3 EXACT REQUIRED
find_package(SEAL 3.4.4 EXACT REQUIRED
# Providing a path so this can be built without installing Microsoft SEAL
PATHS ${SEALNetNative_SOURCE_DIR}/../../native/src/cmake
)
Expand Down
2 changes: 1 addition & 1 deletion dotnet/nuget/SEALNet.nuspec.in
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@
<file src="$LINUX_SEALNETNATIVE$" target="runtimes/linux-x64/native" />
<file src="$MACOS_SEALNETNATIVE$" target="runtimes/osx-x64/native" />
<file src="../lib/$Configuration$/netstandard2.0/SEALNet.dll" target="lib/netstandard2.0/" />
<file src="../../LICENSE" target="LICENSE" />hmm
<file src="../../LICENSE" target="LICENSE" />
</files>
</package>
4 changes: 2 additions & 2 deletions native/examples/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

cmake_minimum_required(VERSION 3.12)

project(SEALExamples VERSION 3.4.2 LANGUAGES CXX)
project(SEALExamples VERSION 3.4.4 LANGUAGES CXX)

# Executable will be in ../bin
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${SEALExamples_SOURCE_DIR}/../bin)
Expand All @@ -20,7 +20,7 @@ target_sources(sealexamples
)

# Import Microsoft SEAL
find_package(SEAL 3.4.3 EXACT REQUIRED
find_package(SEAL 3.4.4 EXACT REQUIRED
# Providing a path so this can be built without installing Microsoft SEAL
PATHS ${SEALExamples_SOURCE_DIR}/../src/cmake
)
Expand Down
2 changes: 1 addition & 1 deletion native/src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

cmake_minimum_required(VERSION 3.12)

project(SEAL VERSION 3.4.3 LANGUAGES CXX C)
project(SEAL VERSION 3.4.4 LANGUAGES CXX C)

if(MSVC)
if(ALLOW_COMMAND_LINE_BUILD)
Expand Down
2 changes: 1 addition & 1 deletion native/tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${SEALTest_SOURCE_DIR}/../bin)
add_executable(sealtest seal/testrunner.cpp)

# Import Microsoft SEAL
find_package(SEAL 3.4.3 EXACT REQUIRED
find_package(SEAL 3.4.4 EXACT REQUIRED
# Providing a path so this can be built without installing Microsoft SEAL
PATHS ${SEALTest_SOURCE_DIR}/../src/cmake
)
Expand Down

0 comments on commit 6401574

Please sign in to comment.