Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
L
libzmq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
libzmq
Commits
73d41cec
Commit
73d41cec
authored
6 years ago
by
Luca Boccassi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Problem: versions are out of date
Solution: bump ABI and revisions and changelog now that v4.3.1 is out
parent
2cb1240d
master
v4.3.2
v4.3.2-win
No related merge requests found
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
3 deletions
+7
-3
CMakeLists.txt
CMakeLists.txt
+1
-1
NEWS
NEWS
+3
-0
configure.ac
configure.ac
+2
-1
zmq.h
include/zmq.h
+1
-1
No files found.
CMakeLists.txt
View file @
73d41cec
...
...
@@ -1083,7 +1083,7 @@ else()
set_target_properties
(
libzmq PROPERTIES
COMPILE_DEFINITIONS
"DLL_EXPORT"
PUBLIC_HEADER
"
${
public_headers
}
"
VERSION
"5.2.
1
"
VERSION
"5.2.
2
"
SOVERSION
"5"
OUTPUT_NAME
"zmq"
PREFIX
"lib"
)
...
...
This diff is collapsed.
Click to expand it.
NEWS
View file @
73d41cec
0MQ version 4.3.2 stable, released on 20xx/xx/xx
================================================
0MQ version 4.3.1 stable, released on 2019/01/12
================================================
...
...
This diff is collapsed.
Click to expand it.
configure.ac
View file @
73d41cec
...
...
@@ -46,9 +46,10 @@ AC_SUBST(PACKAGE_VERSION)
# 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.1: 7:1:2 (ABI version 5)
# ZeroMQ version 4.3.2: 7:2:2 (ABI version 5)
#
# libzmq -version-info current:revision:age
LTVER="7:
1
:2"
LTVER="7:
2
:2"
AC_SUBST(LTVER)
# Take a copy of original flags
...
...
This diff is collapsed.
Click to expand it.
include/zmq.h
View file @
73d41cec
...
...
@@ -41,7 +41,7 @@
/* Version macros for compile-time API version detection */
#define ZMQ_VERSION_MAJOR 4
#define ZMQ_VERSION_MINOR 3
#define ZMQ_VERSION_PATCH
1
#define ZMQ_VERSION_PATCH
2
#define ZMQ_MAKE_VERSION(major, minor, patch) \
((major) *10000 + (minor) *100 + (patch))
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment