]> git.ipfire.org Git - thirdparty/zlib-ng.git/commitdiff
Version 2.0.7 2.0.7
authorHans Kristian Rosbach <hk-git@circlestorm.org>
Tue, 7 Mar 2023 09:31:47 +0000 (10:31 +0100)
committerHans Kristian Rosbach <hk-github@circlestorm.org>
Fri, 17 Mar 2023 20:27:56 +0000 (21:27 +0100)
Changes since 2.0.6:
- Fix CVE-2022-37434 #1328
- Fix chunkmemset #1196
- Fix deflateBound too small #1236
- Fix Z_SOLO #1263
- Fix ACLE variant of crc32 #1274
- Fix inflateBack #1311
- Fix deflate_quick windowsize #1431
- Fix DFLTCC bugs related to adler32 #1349 and #1390
- Fix warnings #1194 #1312 #1362
- MacOS build fix #1198
- Add invalid windowBits handling #1293
- Support for Force TZCNT #1186
- Support for aligned_alloc() #1360
- Minideflate improvements #1175 #1238
- Dont use unaligned access for memcpy #1309
- Build system #1209 #1233 #1267 #1273 #1278 #1292 #1316 #1318 #1365
- Test improvements #1208 #1227 #1241 #1353
- Cleanup #1266
- Documentation #1205 #1359
- Misc improvements #1294 #1297 #1306 #1344 #1348
- Backported zlib fixes
- Backported CI workflows from Develop branch

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

index 59ac99d3d41686f56dc439a48126c04c7437ab90..ed723df5ee07492fa11ed7f0f6fe74fd45df25d2 100644 (file)
@@ -29,7 +29,7 @@ TEST_LIBS=$(LIBNAME1).a
 LDSHARED=$(CC)
 LDSHAREDFLAGS=-shared
 
-VER=2.0.6
+VER=2.0.7
 VER1=2
 
 STATICLIB=$(LIBNAME1).a
index 2e6d8cc1cca7040761a45cd9b396f1f11c9bf686..b5a9fcb4ccd87dfa6c8e48c6e86d332a1060de71 100644 (file)
--- a/zlib-ng.h
+++ b/zlib-ng.h
 extern "C" {
 #endif
 
-#define ZLIBNG_VERSION "2.0.6"
-#define ZLIBNG_VERNUM 0x2060
+#define ZLIBNG_VERSION "2.0.7"
+#define ZLIBNG_VERNUM 0x2070
 #define ZLIBNG_VER_MAJOR 2
 #define ZLIBNG_VER_MINOR 0
-#define ZLIBNG_VER_REVISION 6
+#define ZLIBNG_VER_REVISION 7
 #define ZLIBNG_VER_SUBREVISION 0
 
 /*
diff --git a/zlib.h b/zlib.h
index c558b0250ea8c36049bbb18150ce981a8c5ba4bc..4303e38cb34f3434a76b9f35ad9e174a69f231fd 100644 (file)
--- a/zlib.h
+++ b/zlib.h
 extern "C" {
 #endif
 
-#define ZLIBNG_VERSION "2.0.6"
-#define ZLIBNG_VERNUM 0x2060
+#define ZLIBNG_VERSION "2.0.7"
+#define ZLIBNG_VERNUM 0x2070
 #define ZLIBNG_VER_MAJOR 2
 #define ZLIBNG_VER_MINOR 0
-#define ZLIBNG_VER_REVISION 6
+#define ZLIBNG_VER_REVISION 7
 #define ZLIBNG_VER_SUBREVISION 0
 
 #define ZLIB_VERSION "1.2.11.zlib-ng"
diff --git a/zutil.c b/zutil.c
index 398e17e7272ddc778b6447ce484e93c78a1dc71c..09c595f7c210d2b6179ae964b35793d23fc6b8eb 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.6 forked from zlib";
+    " zlib-ng 2.0.7 forked from zlib";
 
 #ifdef ZLIB_COMPAT
 const char * Z_EXPORT zlibVersion(void) {