Skip to content

Commit

Permalink
2.1.2 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
Dead2 committed Jun 7, 2023
1 parent 69bd70a commit f75c685
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 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.1.1.beta2
VER=2.1.2
VER1=2

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

#define ZLIBNG_VERSION "2.1.1.beta2"
#define ZLIBNG_VERNUM 0x02010120L /* MMNNRRSM: major minor revision status modified */
#define ZLIBNG_VERSION "2.1.2"
#define ZLIBNG_VERNUM 0x020102F0L /* MMNNRRSM: major minor revision status modified */
#define ZLIBNG_VER_MAJOR 2
#define ZLIBNG_VER_MINOR 1
#define ZLIBNG_VER_REVISION 1
#define ZLIBNG_VER_STATUS 2 /* 0=devel, 1-E=beta, F=Release */
#define ZLIBNG_VER_REVISION 2
#define ZLIBNG_VER_STATUS F /* 0=devel, 1-E=beta, F=Release */
#define ZLIBNG_VER_MODIFIED 0 /* non-zero if modified externally from zlib-ng */

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

#define ZLIBNG_VERSION "2.1.1.beta2"
#define ZLIBNG_VERNUM 0x02010120L /* MMNNRRSM: major minor revision status modified */
#define ZLIBNG_VERSION "2.1.2"
#define ZLIBNG_VERNUM 0x020102F0L /* MMNNRRSM: major minor revision status modified */
#define ZLIBNG_VER_MAJOR 2
#define ZLIBNG_VER_MINOR 1
#define ZLIBNG_VER_REVISION 1
#define ZLIBNG_VER_STATUS 2 /* 0=devel, 1-E=beta, F=Release */
#define ZLIBNG_VER_REVISION 2
#define ZLIBNG_VER_STATUS F /* 0=devel, 1-E=beta, F=Release */
#define ZLIBNG_VER_MODIFIED 0 /* non-zero if modified externally from zlib-ng */

#define ZLIB_VERSION "1.2.13.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.1.1.beta2";
" zlib-ng 2.1.2";

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

0 comments on commit f75c685

Please sign in to comment.