Merge pull request #157 from bluca/bump_ver

Problem: 4.1.6 is out, time to bump version
This commit is contained in:
Constantin Rack 2016-11-14 19:11:43 +01:00 committed by GitHub
commit d23c22cf88
2 changed files with 5 additions and 1 deletions

4
NEWS
View File

@ -1,3 +1,7 @@
0MQ version 4.1.7 stable, released on 20xx/xx/xx
================================================
0MQ version 4.1.6 stable, released on 2016/11/01
================================================

View File

@ -31,7 +31,7 @@
/* Version macros for compile-time API version detection */
#define ZMQ_VERSION_MAJOR 4
#define ZMQ_VERSION_MINOR 1
#define ZMQ_VERSION_PATCH 6
#define ZMQ_VERSION_PATCH 7
#define ZMQ_MAKE_VERSION(major, minor, patch) \
((major) * 10000 + (minor) * 100 + (patch))