Blame VERSION.cmake

Packit 54873f
# ==================================================
Packit 54873f
# Versioning
Packit 54873f
# ==========
Packit 54873f
#
Packit 54873f
# MAJOR Major number for this branch.
Packit 54873f
#
Packit 54873f
# MINOR The most recent interface number this
Packit 54873f
#     library implements.
Packit 54873f
#
Packit 54873f
# COMPATMINOR The latest binary compatible minor number
Packit 54873f
#     this library implements.
Packit 54873f
#
Packit 54873f
# PATCH The implementation number of the current interface.
Packit 54873f
#
Packit 54873f
#
Packit 54873f
# - The package VERSION will be MAJOR.MINOR.PATCH.
Packit 54873f
#
Packit 54873f
# - Libtool's -version-info will be derived from MAJOR, MINOR, PATCH
Packit 54873f
#   and COMPATMINOR (see configure.ac).
Packit 54873f
#
Packit 54873f
# - Changing MAJOR always breaks binary compatibility.
Packit 54873f
#
Packit 54873f
# - Changing MINOR doesn't break binary compatibility by default.
Packit 54873f
#   Only if COMPATMINOR is changed as well.
Packit 54873f
#
Packit 54873f
#
Packit 54873f
# 1) After branching from TRUNK increment TRUNKs MAJOR and
Packit 54873f
#    start with version `MAJOR.0.0' and also set COMPATMINOR to 0.
Packit 54873f
#
Packit 54873f
# 2) Update the version information only immediately before a public release
Packit 54873f
#    of your software. More frequent updates are unnecessary, and only guarantee
Packit 54873f
#    that the current interface number gets larger faster.
Packit 54873f
#
Packit 54873f
# 3) If the library source code has changed at all since the last update,
Packit 54873f
#    then increment PATCH.
Packit 54873f
#
Packit 54873f
# 4) If any interfaces have been added, removed, or changed since the last
Packit 54873f
#    update, increment MINOR, and set PATCH to 0.
Packit 54873f
#
Packit 54873f
# 5) If any interfaces have been added since the last public release, then
Packit 54873f
#    leave COMPATMINOR unchanged. (binary compatible change)
Packit 54873f
#
Packit 54873f
# 6) If any interfaces have been removed since the last public release, then
Packit 54873f
#    set COMPATMINOR to MINOR. (binary incompatible change)
Packit 54873f
#
Packit 54873f
Packit 54873f
SET(LIBSOLV_SOVERSION "1")
Packit 54873f
SET(LIBSOLVEXT_SOVERSION "1")
Packit 54873f
Packit 54873f
SET(LIBSOLV_MAJOR "0")
Packit 54873f
SET(LIBSOLV_MINOR "7")
Packit 54873f
SET(LIBSOLV_PATCH "11")
Packit 54873f