From 79e3de21c3d92a03cbdc9857b11669b811690c9d Mon Sep 17 00:00:00 2001 From: Pieter Hintjens Date: Sun, 11 Jan 2015 21:54:05 +0100 Subject: [PATCH] Problem: patch version was not updated yet for 4.1.1 Solution: ZMQ_VERSION_PATCH is now 1 --- include/zmq.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/zmq.h b/include/zmq.h index a1c573e5..4064b91e 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 0 +#define ZMQ_VERSION_PATCH 1 #define ZMQ_MAKE_VERSION(major, minor, patch) \ ((major) * 10000 + (minor) * 100 + (patch))