diff --git a/CMakeLists.txt b/CMakeLists.txt index 8703f87..f143d10 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,7 +31,7 @@ include( GitVersionSemverfier ) set( BHL_REPO_VERSION_MAJOR 1 ) set( BHL_REPO_VERSION_MINOR 12 ) set( BHL_REPO_VERSION_PATCH 0 ) -set( BHL_REPO_VERSION_TAG "dev" ) +set( BHL_REPO_VERSION_TAG "" ) if( GIT_SUCCESS ) message( "Version: ${GIT_SEM_VERSION} (from Git)" ) diff --git a/scripts/BuildRelease.py b/scripts/BuildRelease.py index debcf5e..c33980c 100755 --- a/scripts/BuildRelease.py +++ b/scripts/BuildRelease.py @@ -13,7 +13,7 @@ # Also needs to be changed in CMakeLists.txt -DEFAULT_VERSION = [1, 12, 0, 'dev', ''] +DEFAULT_VERSION = [1, 12, 0, '', ''] # ---------------------------------------------