Skip to content

Commit f41557c

Browse files
Alexander Damianmfontanini
authored andcommitted
Fixed version macros
1 parent 59caf32 commit f41557c

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(MSVC)

0 commit comments

Comments
 (0)