Skip to content

Commit

Permalink
[version] 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
thoni56 committed Mar 8, 2022
1 parent 0550866 commit ece5c5d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
6 changes: 4 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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}")
Expand Down
6 changes: 3 additions & 3 deletions include/cgreen/cgreen.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
#include <cgreen/runner.h>
#include <cgreen/boxed_double.h>

#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;

0 comments on commit ece5c5d

Please sign in to comment.