From: Hans Kristian Rosbach Date: Sat, 8 May 2021 16:45:00 +0000 (+0200) Subject: Version 2.0.3 X-Git-Tag: 2.0.3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=54b1c13c37b53f2481f02576657cedfef29fce2f;p=thirdparty%2Fzlib-ng.git Version 2.0.3 - 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 --- diff --git a/Makefile.in b/Makefile.in index 0859a759b..68e921774 100644 --- a/Makefile.in +++ b/Makefile.in @@ -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 diff --git a/zlib-ng.h b/zlib-ng.h index 3cacc64af..84228cb97 100644 --- a/zlib-ng.h +++ b/zlib-ng.h @@ -44,11 +44,11 @@ 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 d6aa53830..5f0675363 100644 --- a/zlib.h +++ b/zlib.h @@ -46,11 +46,11 @@ 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 902af570d..a01150ad0 100644 --- 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) {