From 5eebe20a33b7d1274a9c5d22f1546321bc49326a Mon Sep 17 00:00:00 2001 From: drowe67 Date: Mon, 27 Dec 2021 19:28:47 +1030 Subject: [PATCH] include patch level in codec2/version.h --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 36c88ffb4..17c152444 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -47,7 +47,7 @@ set(CODEC2_VERSION_MAJOR 1) set(CODEC2_VERSION_MINOR 0) # Set to patch level if needed, otherwise leave FALSE. # Must be positive (non-zero) if set, since 0 == FALSE in CMake. -set(CODEC2_VERSION_PATCH 0) +set(CODEC2_VERSION_PATCH 3) set(CODEC2_VERSION "${CODEC2_VERSION_MAJOR}.${CODEC2_VERSION_MINOR}") # Patch level version bumps should not change API/ABI. set(SOVERSION "${CODEC2_VERSION_MAJOR}.${CODEC2_VERSION_MINOR}")