Skip to content

Commit

Permalink
Set version to 2.3.0
Browse files Browse the repository at this point in the history
Added new version file and started versioning for 2.3.
  • Loading branch information
markus456 committed Oct 7, 2018
1 parent 9c52ba5 commit 166e335
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
2 changes: 1 addition & 1 deletion VERSION.cmake
@@ -1 +1 @@
include(${CMAKE_SOURCE_DIR}/VERSION22.cmake)
include(${CMAKE_SOURCE_DIR}/VERSION23.cmake)
16 changes: 16 additions & 0 deletions VERSION23.cmake
@@ -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}")

0 comments on commit 166e335

Please sign in to comment.