Bump version to 4.0.9 for next release

This commit is contained in:
Luca Boccassi 2016-06-17 12:39:51 +01:00
parent 463ce1d026
commit 55b0c0d54c
2 changed files with 5 additions and 1 deletions

4
NEWS
View File

@ -1,3 +1,7 @@
0MQ version 4.0.9 stable, released on 2016/xx/xx
================================================
0MQ version 4.0.8 stable, released on 2016/06/17
================================================

View File

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