Set version to 2.3.0

Added new version file and started versioning for 2.3.
This commit is contained in:
Markus Mäkelä 2018-10-07 10:34:04 +03:00
parent 9c52ba5c07
commit 166e335e95
No known key found for this signature in database
GPG Key ID: 72D48FCE664F7B19
2 changed files with 17 additions and 1 deletions

View File

@ -1 +1 @@
include(${CMAKE_SOURCE_DIR}/VERSION22.cmake)
include(${CMAKE_SOURCE_DIR}/VERSION23.cmake)

16
VERSION23.cmake Normal file
View File

@ -0,0 +1,16 @@
# MaxScale version for CMake
#
# This file contains cache values for CMake which control MaxScale's version
# number.
set(MAXSCALE_VERSION_MAJOR "2" CACHE STRING "Major version")
set(MAXSCALE_VERSION_MINOR "3" CACHE STRING "Minor version")
set(MAXSCALE_VERSION_PATCH "0" CACHE STRING "Patch version")
# This should only be incremented if a package is rebuilt
set(MAXSCALE_BUILD_NUMBER 1 CACHE STRING "Release number")
set(MAXSCALE_MATURITY "Beta" CACHE STRING "Release maturity")
set(MAXSCALE_VERSION_NUMERIC "${MAXSCALE_VERSION_MAJOR}.${MAXSCALE_VERSION_MINOR}.${MAXSCALE_VERSION_PATCH}")
set(MAXSCALE_VERSION "${MAXSCALE_VERSION_MAJOR}.${MAXSCALE_VERSION_MINOR}.${MAXSCALE_VERSION_PATCH}")