Finalize NEWS and ABI revision for 4.1.8

This commit is contained in:
Luca Boccassi 2020-09-02 14:35:39 +01:00
parent 19dadf092e
commit 12dede9a13
No known key found for this signature in database
GPG Key ID: 4B29668050785162
3 changed files with 4 additions and 3 deletions

2
NEWS
View File

@ -1,4 +1,4 @@
0MQ version 4.1.8 stable, released on 20xx/xx/xx
0MQ version 4.1.8 stable, released on 2020/09/07
================================================
* Security advisories:

View File

@ -35,9 +35,10 @@ AC_SUBST(PACKAGE_VERSION)
# ZeroMQ version 4.1.5: 5:1:0 (ABI version 5)
# ZeroMQ version 4.1.6: 5:2:0 (ABI version 5)
# ZeroMQ version 4.1.7: 5:3:0 (ABI version 5)
# ZeroMQ version 4.1.8: 5:4:0 (ABI version 5)
#
# libzmq -version-info current:revision:age
LTVER="5:3:0"
LTVER="5:4:0"
AC_SUBST(LTVER)
# Take a copy of original flags

View File

@ -31,7 +31,7 @@
/* Version macros for compile-time API version detection */
#define ZMQ_VERSION_MAJOR 4
#define ZMQ_VERSION_MINOR 1
#define ZMQ_VERSION_PATCH 7
#define ZMQ_VERSION_PATCH 8
#define ZMQ_MAKE_VERSION(major, minor, patch) \
((major) * 10000 + (minor) * 100 + (patch))