From 3f12984eaa84189cd169ddd0777b8eadb2a4188f Mon Sep 17 00:00:00 2001 From: Min RK Date: Sun, 7 Jun 2015 11:19:14 -0700 Subject: [PATCH] bump version to 4.0.7 --- include/zmq.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/zmq.h b/include/zmq.h index 1b1955f7..15260856 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 6 +#define ZMQ_VERSION_PATCH 7 #define ZMQ_MAKE_VERSION(major, minor, patch) \ ((major) * 10000 + (minor) * 100 + (patch))