Skip to content

Commit

Permalink
2.2.1 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
Dead2 committed Jul 2, 2024
1 parent 5732b39 commit d54e376
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ LDSHARED=$(CC)
LDSHAREDFLAGS=-shared
LDVERSIONSCRIPT=

VER=2.2.0
VER=2.2.1
VER1=2

STATICLIB=$(LIBNAME1).a
Expand Down
10 changes: 5 additions & 5 deletions zlib-ng.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@
extern "C" {
#endif

#define ZLIBNG_VERSION "2.2.0"
#define ZLIBNG_VERNUM 0x020200F0L /* MMNNRRSM: major minor revision status modified */
#define ZLIBNG_VERSION "2.2.1"
#define ZLIBNG_VERNUM 0x020201F0L /* MMNNRRSM: major minor revision status modified */
#define ZLIBNG_VER_MAJOR 2
#define ZLIBNG_VER_MINOR 2
#define ZLIBNG_VER_REVISION 0
#define ZLIBNG_VER_STATUS E /* 0=devel, 1-E=beta, F=Release (DEPRECATED) */
#define ZLIBNG_VER_STATUSH 0xE /* Hex values: 0=devel, 1-E=beta, F=Release */
#define ZLIBNG_VER_REVISION 1
#define ZLIBNG_VER_STATUS F /* 0=devel, 1-E=beta, F=Release (DEPRECATED) */
#define ZLIBNG_VER_STATUSH 0xF /* Hex values: 0=devel, 1-E=beta, F=Release */
#define ZLIBNG_VER_MODIFIED 0 /* non-zero if modified externally from zlib-ng */

/*
Expand Down
10 changes: 5 additions & 5 deletions zlib.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,13 @@
extern "C" {
#endif

#define ZLIBNG_VERSION "2.2.0"
#define ZLIBNG_VERNUM 0x020200F0L /* MMNNRRSM: major minor revision status modified */
#define ZLIBNG_VERSION "2.2.1"
#define ZLIBNG_VERNUM 0x020201F0L /* MMNNRRSM: major minor revision status modified */
#define ZLIBNG_VER_MAJOR 2
#define ZLIBNG_VER_MINOR 2
#define ZLIBNG_VER_REVISION 0
#define ZLIBNG_VER_STATUS E /* 0=devel, 1-E=beta, F=Release (DEPRECATED) */
#define ZLIBNG_VER_STATUSH 0xE /* Hex values: 0=devel, 1-E=beta, F=Release */
#define ZLIBNG_VER_REVISION 1
#define ZLIBNG_VER_STATUS F /* 0=devel, 1-E=beta, F=Release (DEPRECATED) */
#define ZLIBNG_VER_STATUSH 0xF /* Hex values: 0=devel, 1-E=beta, F=Release */
#define ZLIBNG_VER_MODIFIED 0 /* non-zero if modified externally from zlib-ng */

#define ZLIB_VERSION "1.3.1.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 PREFIX3(vstring)[] =
" zlib-ng 2.2.0";
" zlib-ng 2.2.1";

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

0 comments on commit d54e376

Please sign in to comment.