From cf38d9b7df801ca3ab3eb088dc6f1219b6d11b3d Mon Sep 17 00:00:00 2001 From: Pieter Hintjens Date: Mon, 17 Aug 2015 13:11:10 +0200 Subject: [PATCH] Prepared for next release 4.1.4 --- NEWS | 4 ++++ include/zmq.h | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index d8660489..34ef53f8 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,7 @@ +0MQ version 4.1.4 stable, released on 2015/xx/xx +================================================ + + 0MQ version 4.1.3 stable, released on 2015/08/17 ================================================ diff --git a/include/zmq.h b/include/zmq.h index e6e9be7b..c58885b4 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 3 +#define ZMQ_VERSION_PATCH 4 #define ZMQ_MAKE_VERSION(major, minor, patch) \ ((major) * 10000 + (minor) * 100 + (patch))