Bump version to 1.3.3 socket_wrapper-1.3.3
authorAndreas Schneider <asn@samba.org>
Mon, 15 Mar 2021 07:24:57 +0000 (08:24 +0100)
committerAndreas Schneider <asn@samba.org>
Wed, 17 Mar 2021 08:53:02 +0000 (09:53 +0100)
Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
CHANGELOG
CMakeLists.txt

index c2cbb232b4a9f4a3ecda7ebf59fed9133e010c7a..ed579e2d9642f5db0ab63b33889db1b4f1f17b15 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,12 @@
 ChangeLog
 ==========
 
+version 1.3.3 (released 2021-03-17)
+  * Added public libsocket_wrapper_noop library
+  * Added wrapper for wrap __close_nocancel()
+  * Fixed possible deadlock in swrap_pcap_dump_packet()
+  * Fixed issue when writing pcap files
+
 version 1.3.2 (released 2021-02-10)
   * Fixed possible memory leak between swrap_recvmsg_{before,after}_unix()
 
index 26dd5b9002af1518a52b5ced534e4067a9ba8f5e..bc6a7865f60fbc28093be1ee89b66b125853295a 100644 (file)
@@ -11,7 +11,7 @@ list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules")
 include(DefineCMakeDefaults)
 include(DefineCompilerFlags)
 
-project(socket_wrapper VERSION 1.3.2 LANGUAGES C)
+project(socket_wrapper VERSION 1.3.3 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 2)
+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})