Skip to content

Commit bbc3af6

Browse files
authored
Merge pull request mfontanini#189 from accelerated/fix_versioning
Fixed version macros
2 parents a0530d7 + 40d0221 commit bbc3af6

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

CMakeLists.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@ project(cppkafka)
33

44
# Set the version number.
55
set(CPPKAFKA_VERSION_MAJOR 0)
6-
set(CPPKAFKA_VERSION_MINOR 2)
7-
set(CPPKAFKA_VERSION "${CPPKAFKA_VERSION_MAJOR}.${CPPKAFKA_VERSION_MINOR}")
6+
set(CPPKAFKA_VERSION_MINOR 3)
7+
set(CPPKAFKA_VERSION_REVISION 1)
8+
set(CPPKAFKA_VERSION "${CPPKAFKA_VERSION_MAJOR}.${CPPKAFKA_VERSION_MINOR}.${CPPKAFKA_VERSION_REVISION}")
89
set(RDKAFKA_MIN_VERSION 0x00090400)
910

1011
if (NOT CMAKE_CXX_FLAGS)

0 commit comments

Comments
 (0)