Skip to content

Commit

Permalink
Problem: 4.3.5 is out, need new version
Browse files Browse the repository at this point in the history
Solution: bump to 4.3.6
  • Loading branch information
bluca committed Oct 9, 2023
1 parent 622fc6d commit dbb7e3d
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Expand Up @@ -1402,7 +1402,7 @@ else()
# NOTE: the SOVERSION and VERSION MUST be the same as the one generated by libtool! It is NOT the same as the
# version of the package.
set_target_properties(
libzmq PROPERTIES COMPILE_DEFINITIONS "DLL_EXPORT" PUBLIC_HEADER "${public_headers}" VERSION "5.2.5"
libzmq PROPERTIES COMPILE_DEFINITIONS "DLL_EXPORT" PUBLIC_HEADER "${public_headers}" VERSION "5.2.6"
SOVERSION "5" OUTPUT_NAME "${ZMQ_OUTPUT_BASENAME}" PREFIX "lib")
if(ZMQ_BUILD_FRAMEWORK)
set_target_properties(
Expand Down
3 changes: 2 additions & 1 deletion configure.ac
Expand Up @@ -53,9 +53,10 @@ AC_SUBST(PACKAGE_VERSION)
# ZeroMQ version 4.3.3: 7:3:2 (ABI version 5)
# ZeroMQ version 4.3.4: 7:4:2 (ABI version 5)
# ZeroMQ version 4.3.5: 7:5:2 (ABI version 5)
# ZeroMQ version 4.3.6: 7:6:2 (ABI version 5)
#
# libzmq -version-info current:revision:age
LTVER="7:5:2"
LTVER="7:6:2"
AC_SUBST(LTVER)

# Take a copy of original flags
Expand Down
2 changes: 1 addition & 1 deletion include/zmq.h
Expand Up @@ -14,7 +14,7 @@
/* Version macros for compile-time API version detection */
#define ZMQ_VERSION_MAJOR 4
#define ZMQ_VERSION_MINOR 3
#define ZMQ_VERSION_PATCH 5
#define ZMQ_VERSION_PATCH 6

#define ZMQ_MAKE_VERSION(major, minor, patch) \
((major) *10000 + (minor) *100 + (patch))
Expand Down
2 changes: 1 addition & 1 deletion packaging/debian/changelog
@@ -1,4 +1,4 @@
zeromq (4.3.5-0.1) UNRELEASED; urgency=low
zeromq (4.3.6-0.1) UNRELEASED; urgency=low

* Initial packaging.

Expand Down
2 changes: 1 addition & 1 deletion packaging/debian/zeromq.dsc
Expand Up @@ -2,7 +2,7 @@ Format: 3.0 (quilt)
Source: zeromq
Binary: libzmq5, libzmq3-dev, libzmq5-dbg
Architecture: any
Version: 4.3.5-0.1
Version: 4.3.6-0.1
Maintainer: libzmq Developers <zeromq-dev@lists.zeromq.org>
Homepage: http://www.zeromq.org/
Standards-Version: 3.9.8
Expand Down
2 changes: 1 addition & 1 deletion packaging/redhat/zeromq.spec
Expand Up @@ -10,7 +10,7 @@
%endif
%define lib_name libzmq5
Name: zeromq
Version: 4.3.5
Version: 4.3.6
Release: 1%{?dist}
Summary: The ZeroMQ messaging library
Group: Development/Libraries/C and C++
Expand Down

0 comments on commit dbb7e3d

Please sign in to comment.