Skip to content

Commit

Permalink
Merge pull request zeromq#2866 from bluca/new_ver
Browse files Browse the repository at this point in the history
Problem: 4.2.3 is out, version(s) are out of date
  • Loading branch information
c-rack authored Dec 14, 2017
2 parents 28a65ca + 65a1e45 commit 15828e4
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -792,7 +792,7 @@ else ()
COMPILE_DEFINITIONS "DLL_EXPORT"
PUBLIC_HEADER "${public_headers}"
VERSION ${ZMQ_VERSION}
SOVERSION "5.1.3"
SOVERSION "5.1.4"
OUTPUT_NAME "zmq"
PREFIX "lib")
if (ZMQ_BUILD_FRAMEWORK)
Expand Down
3 changes: 3 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
0MQ version 4.2.4 stable, released on 20xx/xx/xx
================================================

0MQ version 4.2.3 stable, released on 2017/12/13
================================================

Expand Down
3 changes: 2 additions & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,10 @@ AC_SUBST(PACKAGE_VERSION)
# ZeroMQ version 4.2.1: 6:1:1 (ABI version 5)
# ZeroMQ version 4.2.2: 6:2:1 (ABI version 5)
# ZeroMQ version 4.2.3: 6:3:1 (ABI version 5)
# ZeroMQ version 4.2.4: 6:4:1 (ABI version 5)
#
# libzmq -version-info current:revision:age
LTVER="6:3:1"
LTVER="6:4:1"
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 @@ -41,7 +41,7 @@
/* Version macros for compile-time API version detection */
#define ZMQ_VERSION_MAJOR 4
#define ZMQ_VERSION_MINOR 2
#define ZMQ_VERSION_PATCH 3
#define ZMQ_VERSION_PATCH 4

#define ZMQ_MAKE_VERSION(major, minor, patch) \
((major) * 10000 + (minor) * 100 + (patch))
Expand Down
2 changes: 1 addition & 1 deletion packaging/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
zeromq (4.2.3) UNRELEASED; urgency=low
zeromq (4.2.4) UNRELEASED; urgency=low

* Initial packaging.

Expand Down
2 changes: 1 addition & 1 deletion packaging/debian/zeromq.dsc.obs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Format: 3.0 (quilt)
Source: zeromq
Binary: libzmq5, libzmq3-dev, libzmq5-dbg
Architecture: any
Version: 4.2.3
Version: 4.2.4
Maintainer: libzmq Developers <[email protected]>
Homepage: http://www.zeromq.org/
Standards-Version: 3.9.8
Expand Down
2 changes: 1 addition & 1 deletion packaging/redhat/zeromq.spec
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
%endif
%define lib_name libzmq5
Name: zeromq
Version: 4.2.3
Version: 4.2.4
Release: 1%{?dist}
Summary: The ZeroMQ messaging library
Group: Applications/Internet
Expand Down

0 comments on commit 15828e4

Please sign in to comment.