From f58494736845bba9e25afebf18095115cf8e5e04 Mon Sep 17 00:00:00 2001 From: Pieter Hintjens Date: Tue, 14 Oct 2014 10:23:00 +0200 Subject: [PATCH] Updated version for next release --- NEWS | 4 ++++ include/zmq.h | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 6341e36c..f001542d 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,7 @@ +0MQ version 4.0.6 stable, released on 2015/xx/xx +================================================ + + 0MQ version 4.0.5 stable, released on 2014/10/14 ================================================ diff --git a/include/zmq.h b/include/zmq.h index d785e733..1b1955f7 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 0 -#define ZMQ_VERSION_PATCH 5 +#define ZMQ_VERSION_PATCH 6 #define ZMQ_MAKE_VERSION(major, minor, patch) \ ((major) * 10000 + (minor) * 100 + (patch))