Bump version to 1.1.10 nss_wrapper-1.1.10
authorAndreas Schneider <asn@samba.org>
Thu, 19 Mar 2020 09:08:16 +0000 (10:08 +0100)
committerAndreas Schneider <asn@samba.org>
Thu, 19 Mar 2020 09:08:16 +0000 (10:08 +0100)
The library version is set to 0.3.0 because gethostbyname2_r() is
provided now.

This wasn't exported due to a missing configure check for it.

Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Alexander Bokovoy <ab@samba.org>
Reviewed-by: Samuel Cabrero <scabrero@suse.de>
CHANGELOG
CMakeLists.txt

index 5e76d70b863821897b16944465257f417cb146b4..e649ee8a9ab96a149d5a18264b76dcffdb820bc9 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,10 @@
 ChangeLog
 ==========
 
+version 1.1.10 (released 2020-03-19)
+  * Fixed crash bug in OpenLDAP libraries with gethostbyname_r()
+  * Code cleanup in gethostbyname(2)(_r) functions
+
 version 1.1.9 (released 2020-03-16)
   * Fixed log spam when loading modules
 
index c520d161ee805bb6609995e06d5ded32cbd0ebd1..64e3412d7047fadfae72fb7f84b0682eae7f9707 100644 (file)
@@ -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.9 LANGUAGES C)
+project(nss_wrapper VERSION 1.1.10 LANGUAGES C)
 
 # global needed variables
 set(APPLICATION_NAME ${PROJECT_NAME})
@@ -24,8 +24,8 @@ set(APPLICATION_NAME ${PROJECT_NAME})
 #   If the source code was changed, but there were no interface changes:
 #     Increment PATCH.
 set(LIBRARY_VERSION_MAJOR 0)
-set(LIBRARY_VERSION_MINOR 2)
-set(LIBRARY_VERSION_PATCH 8)
+set(LIBRARY_VERSION_MINOR 3)
+set(LIBRARY_VERSION_PATCH 0)
 set(LIBRARY_VERSION "${LIBRARY_VERSION_MAJOR}.${LIBRARY_VERSION_MINOR}.${LIBRARY_VERSION_PATCH}")
 set(LIBRARY_SOVERSION ${LIBRARY_VERSION_MAJOR})