From 275c8e84d2781bda8358699b1d99ee0fdeb054f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Fri, 15 May 2020 11:15:23 +0200 Subject: [PATCH] Set development version 2.0.99 --- cmake/versions.cmake | 2 +- lib/version.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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