Skip to content

Commit

Permalink
Finalize NEWS and ABI revision for 4.1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
bluca committed Sep 2, 2020
1 parent 19dadf0 commit 12dede9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion NEWS
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
3 changes: 2 additions & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion include/zmq.h
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit 12dede9

Please sign in to comment.