aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Schneider <asn@samba.org>2020-04-02 12:08:35 +0200
committerAndreas Schneider <asn@samba.org>2020-04-02 12:08:35 +0200
commit865498a3681a6535c4c46822a077cd75e09596f5 (patch)
tree0188fd05bed690cb89023364ff1205f86b2538df
parenta195562409b0f48a558829c50fd32bd94892c2d1 (diff)
downloadnss_wrapper-master-fix.tar.gz
nss_wrapper-master-fix.tar.xz
nss_wrapper-master-fix.zip
Bump version 1.1.11master-fix
Signed-off-by: Andreas Schneider <asn@samba.org>
-rw-r--r--CHANGELOG3
-rw-r--r--CMakeLists.txt4
2 files changed, 5 insertions, 2 deletions
diff --git a/CHANGELOG b/CHANGELOG
index e649ee8..dddc981 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,9 @@
ChangeLog
==========
+version 1.1.11 (released 2020-04-02)
+ * Fixed strict aliasing issues on armv7hl (32bit)
+
version 1.1.10 (released 2020-03-19)
* Fixed crash bug in OpenLDAP libraries with gethostbyname_r()
* Code cleanup in gethostbyname(2)(_r) functions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 64e3412..51fdb15 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -11,7 +11,7 @@ list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules")
include(DefineCMakeDefaults)
include(DefineCompilerFlags)
-project(nss_wrapper VERSION 1.1.10 LANGUAGES C)
+project(nss_wrapper VERSION 1.1.11 LANGUAGES C)
# global needed variables
set(APPLICATION_NAME ${PROJECT_NAME})
@@ -25,7 +25,7 @@ set(APPLICATION_NAME ${PROJECT_NAME})
# Increment PATCH.
set(LIBRARY_VERSION_MAJOR 0)
set(LIBRARY_VERSION_MINOR 3)
-set(LIBRARY_VERSION_PATCH 0)
+set(LIBRARY_VERSION_PATCH 1)
set(LIBRARY_VERSION "${LIBRARY_VERSION_MAJOR}.${LIBRARY_VERSION_MINOR}.${LIBRARY_VERSION_PATCH}")
set(LIBRARY_SOVERSION ${LIBRARY_VERSION_MAJOR})