Bump version to 1.1.12 nss_wrapper-1.1.12
authorAndreas Schneider <asn@samba.org>
Fri, 24 Jun 2022 07:54:21 +0000 (09:54 +0200)
committerAndreas Schneider <asn@samba.org>
Fri, 24 Jun 2022 07:54:21 +0000 (09:54 +0200)
Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Ralph Boehme <slow@samba.org>
CHANGELOG
CMakeLists.txt

index dddc9811baa31994baf1197db879e1307df972c7..25b599e47aec65e3aa5b05dabe911f932bdc8a66 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,12 @@
 ChangeLog
 ==========
 
+version 1.1.12 (released 2022-06-24)
+  * Added (de)contructor support on AIX with pragma init/finish
+  * Fixed possible crash in getaddrinfo()
+  * Fixed issues with processes closing all fds when forking
+  * Fixed issues with setgrent() and endpwent() nss module support
+
 version 1.1.11 (released 2020-04-02)
   * Fixed strict aliasing issues on armv7hl (32bit)
 
index 51fdb15ce62ae5a6724051c5dcdaec935f46cfde..2496f6e155d41bb0be0926463d74bcae928eeb17 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.11 LANGUAGES C)
+project(nss_wrapper VERSION 1.1.12 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 1)
+set(LIBRARY_VERSION_PATCH 2)
 set(LIBRARY_VERSION "${LIBRARY_VERSION_MAJOR}.${LIBRARY_VERSION_MINOR}.${LIBRARY_VERSION_PATCH}")
 set(LIBRARY_SOVERSION ${LIBRARY_VERSION_MAJOR})