]> git.ipfire.org Git - thirdparty/zlib-ng.git/commitdiff
Version 2.0.3 2.0.3
authorHans Kristian Rosbach <hk-git@circlestorm.org>
Sat, 8 May 2021 16:45:00 +0000 (18:45 +0200)
committerHans Kristian Rosbach <hk-github@circlestorm.org>
Thu, 13 May 2021 09:03:11 +0000 (11:03 +0200)
- Include porting guide in release packages #917
- Documentation improvements #913 #949
- Added Windows ARM binaries in release packages #916
- Fix crash on ARMv7 #927
- Fix building on FreeBSD #921
- Fix building with musl on aarch64 #936 #952
- Fix ARM float-abi detection #918
- Fix cmake detection of risc-v architectures #942
- Minor buildsystem fixes #922 #924 #933 #938 #950
- Improve zlib-compat build #915 #944
- CI/Test improvements #926 #929 #927 #937 #939 #940

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

index 0859a759bf782dce8627348baf1a0629bd3616eb..68e921774ce1443c857961bde241fc8d00ea8028 100644 (file)
@@ -29,7 +29,7 @@ TEST_LIBS=$(LIBNAME1).a
 LDSHARED=$(CC)
 LDSHAREDFLAGS=-shared
 
-VER=2.0.2
+VER=2.0.3
 VER1=2
 
 STATICLIB=$(LIBNAME1).a
index 3cacc64af8b536e6cc806653a3d68d806c702fa6..84228cb9742a44806f5a4b19ddb557c0850a0991 100644 (file)
--- a/zlib-ng.h
+++ b/zlib-ng.h
 extern "C" {
 #endif
 
-#define ZLIBNG_VERSION "2.0.2"
-#define ZLIBNG_VERNUM 0x2020
+#define ZLIBNG_VERSION "2.0.3"
+#define ZLIBNG_VERNUM 0x2030
 #define ZLIBNG_VER_MAJOR 2
 #define ZLIBNG_VER_MINOR 0
-#define ZLIBNG_VER_REVISION 2
+#define ZLIBNG_VER_REVISION 3
 #define ZLIBNG_VER_SUBREVISION 0
 
 /*
diff --git a/zlib.h b/zlib.h
index d6aa53830aa26023c07a2f5880eedb30b21d0e6d..5f06753631b364be673f1362782671c13c5de8fe 100644 (file)
--- a/zlib.h
+++ b/zlib.h
 extern "C" {
 #endif
 
-#define ZLIBNG_VERSION "2.0.2"
-#define ZLIBNG_VERNUM 0x2020
+#define ZLIBNG_VERSION "2.0.3"
+#define ZLIBNG_VERNUM 0x2030
 #define ZLIBNG_VER_MAJOR 2
 #define ZLIBNG_VER_MINOR 0
-#define ZLIBNG_VER_REVISION 2
+#define ZLIBNG_VER_REVISION 3
 #define ZLIBNG_VER_SUBREVISION 0
 
 #define ZLIB_VERSION "1.2.11.zlib-ng"
diff --git a/zutil.c b/zutil.c
index 902af570dec9f81fde5c9773d5d3b0b679dddede..a01150ad0a19c4058f0dcdd031fd0cc7c90a6ca5 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.2 forked from zlib";
+    " zlib-ng 2.0.3 forked from zlib";
 
 #ifdef ZLIB_COMPAT
 const char * Z_EXPORT zlibVersion(void) {