Skip to content

Commit

Permalink
Version 2.0.3
Browse files Browse the repository at this point in the history
- Include porting guide in release packages zlib-ng#917
- Documentation improvements zlib-ng#913 zlib-ng#949
- Added Windows ARM binaries in release packages zlib-ng#916
- Fix crash on ARMv7 zlib-ng#927
- Fix building on FreeBSD zlib-ng#921
- Fix building with musl on aarch64 zlib-ng#936 zlib-ng#952
- Fix ARM float-abi detection zlib-ng#918
- Fix cmake detection of risc-v architectures zlib-ng#942
- Minor buildsystem fixes zlib-ng#922 zlib-ng#924 zlib-ng#933 zlib-ng#938 zlib-ng#950
- Improve zlib-compat build zlib-ng#915 zlib-ng#944
- CI/Test improvements zlib-ng#926 zlib-ng#929 zlib-ng#927 zlib-ng#937 zlib-ng#939 zlib-ng#940
  • Loading branch information
Dead2 authored and gsjaardema committed May 13, 2021
1 parent b7485fe commit 9b8a90b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions zlib-ng.h
Original file line number Diff line number Diff line change
Expand Up @@ -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

/*
Expand Down
6 changes: 3 additions & 3 deletions zlib.h
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion zutil.c
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 9b8a90b

Please sign in to comment.