From ece5c5deb9fb791e006be4e913178df5525d78fe Mon Sep 17 00:00:00 2001 From: Thomas Nilefalk Date: Tue, 8 Mar 2022 15:45:14 +0100 Subject: [PATCH] [version] 1.5.0 --- CMakeLists.txt | 6 ++++-- include/cgreen/cgreen.h | 6 +++--- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 853bdea7..bb52d9bf 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,8 +16,10 @@ enable_testing() # global needed variables set(APPLICATION_NAME ${PROJECT_NAME}) set(APPLICATION_VERSION_MAJOR "1") -set(APPLICATION_VERSION_MINOR "4") -set(APPLICATION_VERSION_PATCH "1") +set(APPLICATION_VERSION_MINOR "5") +set(APPLICATION_VERSION_PATCH "0") +# If you change here, also change in include/cgreen/cgreen.h +# unless you write some code that automatically updates that... set(APPLICATION_VERSION ${APPLICATION_VERSION_MAJOR}.${APPLICATION_VERSION_MINOR}.${APPLICATION_VERSION_PATCH}${APPLICATION_VERSION_STATUS}) add_definitions(-DVERSION="${APPLICATION_VERSION}") diff --git a/include/cgreen/cgreen.h b/include/cgreen/cgreen.h index 108d4ce9..ead7a6b5 100644 --- a/include/cgreen/cgreen.h +++ b/include/cgreen/cgreen.h @@ -9,10 +9,10 @@ #include #include -#define CGREEN_VERSION "1.4.1" +#define CGREEN_VERSION "1.5.0" #define CGREEN_VERSION_MAJOR 1 -#define CGREEN_VERSION_MINOR 4 -#define CGREEN_VERSION_PATCH 1 +#define CGREEN_VERSION_MINOR 5 +#define CGREEN_VERSION_PATCH 0 extern char *cgreen_library_version; extern char *cgreen_library_revision;