From 40d0221052035fe9d47669802a9021381b56b796 Mon Sep 17 00:00:00 2001 From: Alexander Damian Date: Fri, 26 Apr 2019 14:36:03 -0400 Subject: [PATCH] Fixed version macros --- CMakeLists.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1256923e..6d4a885a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,8 +3,9 @@ project(cppkafka) # Set the version number. set(CPPKAFKA_VERSION_MAJOR 0) -set(CPPKAFKA_VERSION_MINOR 2) -set(CPPKAFKA_VERSION "${CPPKAFKA_VERSION_MAJOR}.${CPPKAFKA_VERSION_MINOR}") +set(CPPKAFKA_VERSION_MINOR 3) +set(CPPKAFKA_VERSION_REVISION 1) +set(CPPKAFKA_VERSION "${CPPKAFKA_VERSION_MAJOR}.${CPPKAFKA_VERSION_MINOR}.${CPPKAFKA_VERSION_REVISION}") set(RDKAFKA_MIN_VERSION 0x00090400) if (NOT CMAKE_CXX_FLAGS)