mirror of
https://github.com/zeromq/libzmq.git
synced 2024-12-12 18:40:27 +01:00
Problem: versions are out of date
Solution: bump ABI and revisions and changelog now that v4.3.1 is out
This commit is contained in:
parent
2cb1240db6
commit
73d41cec57
@ -1083,7 +1083,7 @@ else()
|
|||||||
set_target_properties(libzmq PROPERTIES
|
set_target_properties(libzmq PROPERTIES
|
||||||
COMPILE_DEFINITIONS "DLL_EXPORT"
|
COMPILE_DEFINITIONS "DLL_EXPORT"
|
||||||
PUBLIC_HEADER "${public_headers}"
|
PUBLIC_HEADER "${public_headers}"
|
||||||
VERSION "5.2.1"
|
VERSION "5.2.2"
|
||||||
SOVERSION "5"
|
SOVERSION "5"
|
||||||
OUTPUT_NAME "zmq"
|
OUTPUT_NAME "zmq"
|
||||||
PREFIX "lib")
|
PREFIX "lib")
|
||||||
|
3
NEWS
3
NEWS
@ -1,3 +1,6 @@
|
|||||||
|
0MQ version 4.3.2 stable, released on 20xx/xx/xx
|
||||||
|
================================================
|
||||||
|
|
||||||
0MQ version 4.3.1 stable, released on 2019/01/12
|
0MQ version 4.3.1 stable, released on 2019/01/12
|
||||||
================================================
|
================================================
|
||||||
|
|
||||||
|
@ -46,9 +46,10 @@ AC_SUBST(PACKAGE_VERSION)
|
|||||||
# ZeroMQ version 4.2.5: 6:5:1 (ABI version 5)
|
# ZeroMQ version 4.2.5: 6:5:1 (ABI version 5)
|
||||||
# ZeroMQ version 4.3.0: 7:0:2 (ABI version 5)
|
# ZeroMQ version 4.3.0: 7:0:2 (ABI version 5)
|
||||||
# ZeroMQ version 4.3.1: 7:1:2 (ABI version 5)
|
# ZeroMQ version 4.3.1: 7:1:2 (ABI version 5)
|
||||||
|
# ZeroMQ version 4.3.2: 7:2:2 (ABI version 5)
|
||||||
#
|
#
|
||||||
# libzmq -version-info current:revision:age
|
# libzmq -version-info current:revision:age
|
||||||
LTVER="7:1:2"
|
LTVER="7:2:2"
|
||||||
AC_SUBST(LTVER)
|
AC_SUBST(LTVER)
|
||||||
|
|
||||||
# Take a copy of original flags
|
# Take a copy of original flags
|
||||||
|
@ -41,7 +41,7 @@
|
|||||||
/* Version macros for compile-time API version detection */
|
/* Version macros for compile-time API version detection */
|
||||||
#define ZMQ_VERSION_MAJOR 4
|
#define ZMQ_VERSION_MAJOR 4
|
||||||
#define ZMQ_VERSION_MINOR 3
|
#define ZMQ_VERSION_MINOR 3
|
||||||
#define ZMQ_VERSION_PATCH 1
|
#define ZMQ_VERSION_PATCH 2
|
||||||
|
|
||||||
#define ZMQ_MAKE_VERSION(major, minor, patch) \
|
#define ZMQ_MAKE_VERSION(major, minor, patch) \
|
||||||
((major) *10000 + (minor) *100 + (patch))
|
((major) *10000 + (minor) *100 + (patch))
|
||||||
|
Loading…
Reference in New Issue
Block a user