diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2019-05-18 09:42:41 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2019-05-18 09:42:41 +0100 |
commit | 0b65c937e3d272d8f9015ce7e887f4aaf03328e2 (patch) | |
tree | e46787722445ca1c8f554b8921affbf166fa682a /CMakeLists.txt | |
parent | 0141607ec2347169666395c610654b1452eb0e78 (diff) | |
download | rspamd-0b65c937e3d272d8f9015ce7e887f4aaf03328e2.tar.gz rspamd-0b65c937e3d272d8f9015ce7e887f4aaf03328e2.zip |
[Rework] Slashing: Change versioning schema - move to 2.0
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index b6983289c..2fe9ff825 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,21 +10,19 @@ CMAKE_MINIMUM_REQUIRED(VERSION 2.8.0 FATAL_ERROR) PROJECT(rspamd C) ENABLE_LANGUAGE(ASM) -SET(RSPAMD_VERSION_MAJOR 1) -SET(RSPAMD_VERSION_MINOR 9) -SET(RSPAMD_VERSION_PATCH 4) +SET(RSPAMD_VERSION_MAJOR 2) +SET(RSPAMD_VERSION_MINOR 0) # Keep two digits all the time SET(RSPAMD_VERSION_MAJOR_NUM ${RSPAMD_VERSION_MAJOR}0) SET(RSPAMD_VERSION_MINOR_NUM ${RSPAMD_VERSION_MINOR}0) -SET(RSPAMD_VERSION_PATCH_NUM ${RSPAMD_VERSION_PATCH}0) IF(GIT_ID) SET(GIT_VERSION 1) SET(RSPAMD_ID "${GIT_ID}") ENDIF() -SET(RSPAMD_VERSION "${RSPAMD_VERSION_MAJOR}.${RSPAMD_VERSION_MINOR}.${RSPAMD_VERSION_PATCH}") +SET(RSPAMD_VERSION "${RSPAMD_VERSION_MAJOR}.${RSPAMD_VERSION_MINOR}") SET(RSPAMD_MASTER_SITE_URL "https://rspamd.com") IF(NOT RSPAMD_USER) |