Skip to content

Commit

Permalink
Set the 1.3.0-rc version suffix and adjust SO version
Browse files Browse the repository at this point in the history
  • Loading branch information
micahsnyder committed Dec 7, 2023
1 parent 6adc758 commit 8ac91cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ cmake_policy(SET CMP0087 NEW) # support generator expressions in install(CODE) a
# For release candidate: set(VERSION_SUFFIX "-rc")
# For release: set(VERSION_SUFFIX "")
string(TIMESTAMP TODAY "%Y%m%d")
set(VERSION_SUFFIX "-devel-${TODAY}")
set(VERSION_SUFFIX "-rc")

project( ClamAV
VERSION "1.3.0"
Expand All @@ -37,7 +37,7 @@ HexVersion(PACKAGE_VERSION_NUM ${PROJECT_VERSION_MAJOR} ${PROJECT_VERSION_MINOR}

# libtool library versioning rules: http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
set(LIBCLAMAV_CURRENT 12)
set(LIBCLAMAV_REVISION 1)
set(LIBCLAMAV_REVISION 2)
set(LIBCLAMAV_AGE 0)

math(EXPR LIBCLAMAV_SOVERSION "${LIBCLAMAV_CURRENT} - ${LIBCLAMAV_AGE}")
Expand Down

0 comments on commit 8ac91cd

Please sign in to comment.