From 4363b75b4d9aec70b297e96d4b933110ce161a62 Mon Sep 17 00:00:00 2001 From: Pieter Hintjens Date: Sun, 24 Nov 2013 18:56:50 +0100 Subject: [PATCH] Release notes for 4.0.3 --- NEWS | 10 ++++++++++ include/zmq.h | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 5d51aba6..fe6011cd 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,13 @@ +0MQ version 4.0.3 stable, released on 2013/11/24 +================================================ + +Bug Fixes +--------- + +* Fixed test_many_sockets case, which failed when process socket limit + was 1024. + + 0MQ version 4.0.2 stable, released on 2013/11/24 ================================================ diff --git a/include/zmq.h b/include/zmq.h index d8084ab6..f7b10db6 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 2 +#define ZMQ_VERSION_PATCH 3 #define ZMQ_MAKE_VERSION(major, minor, patch) \ ((major) * 10000 + (minor) * 100 + (patch))