diff options
author | Hans Kristian Rosbach <hk-git@circlestorm.org> | 2021-12-13 15:26:26 +0100 |
---|---|---|
committer | Hans Kristian Rosbach <hk-github@circlestorm.org> | 2021-12-24 12:52:14 +0100 |
commit | b56a2fd0b126cfe5f13e68ab9090cd4f6a773286 (patch) | |
tree | d889d82d09f8e6d1ac10ff5e003de5afbf9c25df | |
parent | 49de90d36376e91619203a1a54e05ce201c1574a (diff) |
Version 2.0.6
- 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
-rw-r--r-- | Makefile.in | 2 | ||||
-rw-r--r-- | zlib-ng.h | 6 | ||||
-rw-r--r-- | zlib.h | 6 | ||||
-rw-r--r-- | zutil.c | 2 |
4 files changed, 8 insertions, 8 deletions
diff --git a/Makefile.in b/Makefile.in index dbf22eb..8d4e42f 100644 --- a/Makefile.in +++ b/Makefile.in @@ -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 @@ -44,11 +44,11 @@ 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 /* @@ -46,11 +46,11 @@ 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" @@ -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) { |