From 71bc8bee0496516f05cca84d0266ef00921becd9 Mon Sep 17 00:00:00 2001 From: Pieter Hintjens Date: Fri, 18 Dec 2015 10:12:00 +0100 Subject: [PATCH] Updated for release 4.1.5 --- NEWS | 4 ++++ include/zmq.h | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 41b68b10..14eb72dd 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,7 @@ +0MQ version 4.1.5 stable, released on 2016/xx/xx +================================================ + + 0MQ version 4.1.4 stable, released on 2015/12/18 ================================================ diff --git a/include/zmq.h b/include/zmq.h index c58885b4..70e00364 100644 --- a/include/zmq.h +++ b/include/zmq.h @@ -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 4 +#define ZMQ_VERSION_PATCH 5 #define ZMQ_MAKE_VERSION(major, minor, patch) \ ((major) * 10000 + (minor) * 100 + (patch))