summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2019-07-25 12:04:24 (GMT)
committerBrad King <brad.king@kitware.com>2019-07-25 13:23:48 (GMT)
commit7b354baad55454e8ef441b0f8e195b93d5caa974 (patch)
tree615cd0bb5a07121a89aa7a09c65df11230123308 /Source
parenta1c6d7e9af5a241b1afa29b3f7459ee9ee4ec77a (diff)
downloadCMake-7b354baad55454e8ef441b0f8e195b93d5caa974.zip
CMake-7b354baad55454e8ef441b0f8e195b93d5caa974.tar.gz
CMake-7b354baad55454e8ef441b0f8e195b93d5caa974.tar.bz2
CMakeVersion: Set CMake_VERSION_RC to 0 even in non-rc versions
The logic that uses this value already ignores any "false" value, so `0` is just as good as not being set at all. Using `0` for this role makes the version components look more symmetric and reduces the number of edits needed when creating releases.
Diffstat (limited to 'Source')
-rw-r--r--Source/CMakeVersion.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/CMakeVersion.cmake b/Source/CMakeVersion.cmake
index f4875fb..6a1d61f 100644
--- a/Source/CMakeVersion.cmake
+++ b/Source/CMakeVersion.cmake
@@ -2,4 +2,4 @@
set(CMake_VERSION_MAJOR 3)
set(CMake_VERSION_MINOR 15)
set(CMake_VERSION_PATCH 20190725)
-#set(CMake_VERSION_RC 1)
+set(CMake_VERSION_RC 0)