Skip to content

Commit

Permalink
Version 2.0.1 - Hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
Dead2 committed Mar 17, 2021
1 parent ff0ab28 commit b7af2db
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Makefile.in
Expand Up @@ -29,7 +29,7 @@ TEST_LIBS=$(LIBNAME1).a
LDSHARED=$(CC)
LDSHAREDFLAGS=-shared

VER=2.0.0
VER=2.0.1
VER1=2

STATICLIB=$(LIBNAME1).a
Expand Down
6 changes: 3 additions & 3 deletions zlib-ng.h
Expand Up @@ -36,11 +36,11 @@
extern "C" {
#endif

#define ZLIBNG_VERSION "2.0.0"
#define ZLIBNG_VERNUM 0x2000
#define ZLIBNG_VERSION "2.0.1"
#define ZLIBNG_VERNUM 0x2010
#define ZLIBNG_VER_MAJOR 2
#define ZLIBNG_VER_MINOR 0
#define ZLIBNG_VER_REVISION 0
#define ZLIBNG_VER_REVISION 1
#define ZLIBNG_VER_SUBREVISION 0

/*
Expand Down
6 changes: 3 additions & 3 deletions zlib.h
Expand Up @@ -38,11 +38,11 @@
extern "C" {
#endif

#define ZLIBNG_VERSION "2.0.0"
#define ZLIBNG_VERNUM 0x2000
#define ZLIBNG_VERSION "2.0.1"
#define ZLIBNG_VERNUM 0x2010
#define ZLIBNG_VER_MAJOR 2
#define ZLIBNG_VER_MINOR 0
#define ZLIBNG_VER_REVISION 0
#define ZLIBNG_VER_REVISION 1
#define ZLIBNG_VER_SUBREVISION 0

#define ZLIB_VERSION "1.2.11.zlib-ng"
Expand Down
2 changes: 1 addition & 1 deletion zutil.c
Expand Up @@ -21,7 +21,7 @@ z_const char * const PREFIX(z_errmsg)[10] = {
};

const char zlibng_string[] =
" zlib-ng 2.0.0 forked from zlib";
" zlib-ng 2.0.1 forked from zlib";

#ifdef ZLIB_COMPAT
const char * Z_EXPORT zlibVersion(void) {
Expand Down

0 comments on commit b7af2db

Please sign in to comment.