From 8b4541b57098e448378a36611a86043419e25124 Mon Sep 17 00:00:00 2001 From: Bill Williams Date: Tue, 23 Apr 2019 13:29:35 -0700 Subject: [PATCH 1/2] Update to use nanomsg v 1.1.5 --- CHANGELOG.md | 1 + CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index be5a5d0..f730be4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Fix mutex error in service alive - Security: Mutual Authentication (mTLS or two way TLS) - Rename command line options for MTLS cert and Key +- Update to use nanomsg v. 1.1.5 ## [1.0.2] - 2019-02-08 - Refactored connection.c and updated corresponding unit tests diff --git a/CMakeLists.txt b/CMakeLists.txt index 7284f6d..90e3f3f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -101,7 +101,7 @@ add_dependencies(libnopoll nopoll) ExternalProject_Add(nanomsg PREFIX ${CMAKE_CURRENT_BINARY_DIR}/_prefix/nanomsg GIT_REPOSITORY https://github.com/nanomsg/nanomsg.git - GIT_TAG "1.1.2" + GIT_TAG "1.1.5" CMAKE_ARGS += -DCMAKE_INSTALL_PREFIX=${INSTALL_DIR} ) add_library(libnanomsg STATIC SHARED IMPORTED) From e4e78118cf478c3cf860b5819111c4f06bee62d4 Mon Sep 17 00:00:00 2001 From: Bill Williams Date: Tue, 23 Apr 2019 17:12:48 -0700 Subject: [PATCH 2/2] Use nanomsg version 1.1.4 --- CHANGELOG.md | 2 +- CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f730be4..c0295c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Fix mutex error in service alive - Security: Mutual Authentication (mTLS or two way TLS) - Rename command line options for MTLS cert and Key -- Update to use nanomsg v. 1.1.5 +- Update to use nanomsg v. 1.1.4 ## [1.0.2] - 2019-02-08 - Refactored connection.c and updated corresponding unit tests diff --git a/CMakeLists.txt b/CMakeLists.txt index 90e3f3f..1f43852 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -101,7 +101,7 @@ add_dependencies(libnopoll nopoll) ExternalProject_Add(nanomsg PREFIX ${CMAKE_CURRENT_BINARY_DIR}/_prefix/nanomsg GIT_REPOSITORY https://github.com/nanomsg/nanomsg.git - GIT_TAG "1.1.5" + GIT_TAG "1.1.4" CMAKE_ARGS += -DCMAKE_INSTALL_PREFIX=${INSTALL_DIR} ) add_library(libnanomsg STATIC SHARED IMPORTED)