]> git.ipfire.org Git - thirdparty/zlib-ng.git/commitdiff
Version 2.0.4 2.0.4
authorHans Kristian Rosbach <hk-git@circlestorm.org>
Fri, 11 Jun 2021 10:44:06 +0000 (12:44 +0200)
committerHans Kristian Rosbach <hk-github@circlestorm.org>
Fri, 11 Jun 2021 19:35:20 +0000 (21:35 +0200)
- Fix inflate corruption #982
- Minor code cleanup #983 #984
- Fix mpicc compilation #959
- Fix build on NetBSD #964
- Fix build on OpenBSD #970
- Fix build on Cygwin #972 #974
- Fix linter warnings in configure #975
- Spelling fixes #961
- Improve unistd.h handling #960
- Remove stdarg.h detection #976
- CI/Test improvements #977 #981 #985
- Cmake improvements #980 #989

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

index 68e921774ce1443c857961bde241fc8d00ea8028..0dd656d644e8f8f77a80352d32277608bc986747 100644 (file)
@@ -29,7 +29,7 @@ TEST_LIBS=$(LIBNAME1).a
 LDSHARED=$(CC)
 LDSHAREDFLAGS=-shared
 
-VER=2.0.3
+VER=2.0.4
 VER1=2
 
 STATICLIB=$(LIBNAME1).a
index b506faddc6550fef9f0786986d4daf8fc633c785..2a078385fcdd9bc1a362b3a565dc74e79499707b 100644 (file)
--- a/zlib-ng.h
+++ b/zlib-ng.h
 extern "C" {
 #endif
 
-#define ZLIBNG_VERSION "2.0.3"
-#define ZLIBNG_VERNUM 0x2030
+#define ZLIBNG_VERSION "2.0.4"
+#define ZLIBNG_VERNUM 0x2040
 #define ZLIBNG_VER_MAJOR 2
 #define ZLIBNG_VER_MINOR 0
-#define ZLIBNG_VER_REVISION 3
+#define ZLIBNG_VER_REVISION 4
 #define ZLIBNG_VER_SUBREVISION 0
 
 /*
diff --git a/zlib.h b/zlib.h
index ee5edde6fdffbb4a5740f9f021239ea1f9f33ae3..0b443423378a7a26f04cbdfd928e9f7e2051a45c 100644 (file)
--- a/zlib.h
+++ b/zlib.h
 extern "C" {
 #endif
 
-#define ZLIBNG_VERSION "2.0.3"
-#define ZLIBNG_VERNUM 0x2030
+#define ZLIBNG_VERSION "2.0.4"
+#define ZLIBNG_VERNUM 0x2040
 #define ZLIBNG_VER_MAJOR 2
 #define ZLIBNG_VER_MINOR 0
-#define ZLIBNG_VER_REVISION 3
+#define ZLIBNG_VER_REVISION 4
 #define ZLIBNG_VER_SUBREVISION 0
 
 #define ZLIB_VERSION "1.2.11.zlib-ng"
diff --git a/zutil.c b/zutil.c
index a01150ad0a19c4058f0dcdd031fd0cc7c90a6ca5..b38dc45a91c44f53d7c8364affe7973a76503e6d 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.3 forked from zlib";
+    " zlib-ng 2.0.4 forked from zlib";
 
 #ifdef ZLIB_COMPAT
 const char * Z_EXPORT zlibVersion(void) {