]> git.ipfire.org Git - thirdparty/zlib-ng.git/commitdiff
Version 2.0.6 2.0.6
authorHans Kristian Rosbach <hk-git@circlestorm.org>
Mon, 13 Dec 2021 14:26:26 +0000 (15:26 +0100)
committerHans Kristian Rosbach <hk-github@circlestorm.org>
Fri, 24 Dec 2021 11:52:14 +0000 (12:52 +0100)
 - Fix hangs on macOS #1031
 - Fix minideflate write buffers being overwritten #1060
 - Fix deflateBound and compressBound returning too small size estimates #1049 #1071
 - Fix incorrect function declaration warning #1080
 - Fix build problems when building outside of source dir #1049
 - Fix build problems on arm2-7 #1030
 - Fixed some compile warnings #1020 #1036 #1037 #1048
 - Improved posix memalign support #888
 - Improvements to testing #637 #1026 #1032 #1035 #1049 #1051 #1056 #1063 #1067 #1079
 - Improvements for integration into other projects #1022 #1042
 - Code style fixes #637 #1040 #1050 #1075

Makefile.in
zlib-ng.h
zlib.h
zutil.c

index dbf22eb4212ce3a57d56f0a02c88501c64e85b96..8d4e42f0ba1084f9197eb88f454acadc8a172b84 100644 (file)
@@ -29,7 +29,7 @@ TEST_LIBS=$(LIBNAME1).a
 LDSHARED=$(CC)
 LDSHAREDFLAGS=-shared
 
-VER=2.0.5
+VER=2.0.6
 VER1=2
 
 STATICLIB=$(LIBNAME1).a
index dd221e597712a925abf82d7a1e69f536f0021407..0cd234ac995bbc13535e50109bb383c50b9052ec 100644 (file)
--- a/zlib-ng.h
+++ b/zlib-ng.h
 extern "C" {
 #endif
 
-#define ZLIBNG_VERSION "2.0.5"
-#define ZLIBNG_VERNUM 0x2050
+#define ZLIBNG_VERSION "2.0.6"
+#define ZLIBNG_VERNUM 0x2060
 #define ZLIBNG_VER_MAJOR 2
 #define ZLIBNG_VER_MINOR 0
-#define ZLIBNG_VER_REVISION 5
+#define ZLIBNG_VER_REVISION 6
 #define ZLIBNG_VER_SUBREVISION 0
 
 /*
diff --git a/zlib.h b/zlib.h
index a1adb9bbc4e7a480dee1363223e460c9c8d7f601..a593c47fc681406d3330a1ed2fa057830b590925 100644 (file)
--- a/zlib.h
+++ b/zlib.h
 extern "C" {
 #endif
 
-#define ZLIBNG_VERSION "2.0.5"
-#define ZLIBNG_VERNUM 0x2050
+#define ZLIBNG_VERSION "2.0.6"
+#define ZLIBNG_VERNUM 0x2060
 #define ZLIBNG_VER_MAJOR 2
 #define ZLIBNG_VER_MINOR 0
-#define ZLIBNG_VER_REVISION 5
+#define ZLIBNG_VER_REVISION 6
 #define ZLIBNG_VER_SUBREVISION 0
 
 #define ZLIB_VERSION "1.2.11.zlib-ng"
diff --git a/zutil.c b/zutil.c
index 62edc990b1f52be223be7df69003bc40c57d6949..398e17e7272ddc778b6447ce484e93c78a1dc71c 100644 (file)
--- a/zutil.c
+++ b/zutil.c
@@ -21,7 +21,7 @@ z_const char * const PREFIX(z_errmsg)[10] = {
 };
 
 const char zlibng_string[] =
-    " zlib-ng 2.0.5 forked from zlib";
+    " zlib-ng 2.0.6 forked from zlib";
 
 #ifdef ZLIB_COMPAT
 const char * Z_EXPORT zlibVersion(void) {