diff --git a/cmake/versions.cmake b/cmake/versions.cmake index adf6393cc..b142ef8dc 100644 --- a/cmake/versions.cmake +++ b/cmake/versions.cmake @@ -1,5 +1,5 @@ # Version for libraries CPP -SET(VERSION "2.0.0") +SET(VERSION "2.0.99") STRING(REGEX MATCHALL "[0-9]" VERSION_PARTS "${VERSION}") LIST(GET VERSION_PARTS 0 VERSION_MAJOR) LIST(GET VERSION_PARTS 1 VERSION_MINOR) diff --git a/lib/version.h b/lib/version.h index bca2f97b4..a46d1b0c8 100644 --- a/lib/version.h +++ b/lib/version.h @@ -1,6 +1,6 @@ #define CPPCHECK_MAJOR 2 #define CPPCHECK_MINOR 0 -#define CPPCHECK_DEVMINOR 0 +#define CPPCHECK_DEVMINOR 99 #define STRINGIFY(x) STRING(x) #define STRING(VER) #VER