Skip to content

Commit

Permalink
Bump version for v3.1.1 release (#187)
Browse files Browse the repository at this point in the history
Per https://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html:

* Source code has changed (PR #184), but no interface has been added, removed,
  or changed: soversion goes from 29.0.0 to 29.1.0.

* Also, looks like IMATH_VERSION_RELEASE_TYPE was inadvertently left
  at "-dev" for the v3.1.0 release.

Signed-off-by: Cary Phillips <[email protected]>
  • Loading branch information
cary-ilm authored Jul 20, 2021
1 parent e4b831a commit 3f4d328
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ endif()

# Imath version

project(Imath VERSION 3.1.0 LANGUAGES C CXX)
project(Imath VERSION 3.1.1 LANGUAGES C CXX)

set(IMATH_VERSION_RELEASE_TYPE "-dev" CACHE STRING "Extra version tag string for Imath build, such as -dev, -beta1, etc.")
set(IMATH_VERSION_RELEASE_TYPE "" CACHE STRING "Extra version tag string for Imath build, such as -dev, -beta1, etc.")

set(IMATH_VERSION ${Imath_VERSION})
set(IMATH_VERSION_API "${Imath_VERSION_MAJOR}_${Imath_VERSION_MINOR}")
Expand All @@ -39,7 +39,7 @@ set(IMATH_VERSION_API "${Imath_VERSION_MAJOR}_${Imath_VERSION_MINOR}")
# 3. API changed: CURRENT+1.0.0
#
set(IMATH_LIBTOOL_CURRENT 29)
set(IMATH_LIBTOOL_REVISION 0)
set(IMATH_LIBTOOL_REVISION 1)
set(IMATH_LIBTOOL_AGE 0)
set(IMATH_LIB_VERSION "${IMATH_LIBTOOL_CURRENT}.${IMATH_LIBTOOL_REVISION}.${IMATH_LIBTOOL_AGE}")
set(IMATH_LIB_SOVERSION ${IMATH_LIBTOOL_CURRENT})
Expand Down

0 comments on commit 3f4d328

Please sign in to comment.