Skip to content

Commit

Permalink
Finalize NEWS and ABI revision for 4.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
bluca committed Sep 2, 2020
1 parent da57036 commit 267699b
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.0.10 stable, released on 20xx/xx/xx
0MQ version 4.0.10 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 @@ -32,9 +32,10 @@ AC_SUBST(PACKAGE_VERSION)
# ZeroMQ version 4.0: 4:0:0 (ABI version 4)
# ZeroMQ version 4.0.8: 4:1:0 (ABI version 4)
# ZeroMQ version 4.0.9: 4:2:0 (ABI version 4)
# ZeroMQ version 4.0.10: 4:3:0 (ABI version 4)
#
# libzmq -version-info current:revision:age
LTVER="4:2:0"
LTVER="4:3: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 0
#define ZMQ_VERSION_PATCH 9
#define ZMQ_VERSION_PATCH 10

#define ZMQ_MAKE_VERSION(major, minor, patch) \
((major) * 10000 + (minor) * 100 + (patch))
Expand Down

0 comments on commit 267699b

Please sign in to comment.