summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Alexander Steffens (heftig) <jan.steffens@gmail.com>2019-02-23 03:21:13 +0100
committerJan Alexander Steffens (heftig) <jan.steffens@gmail.com>2019-02-23 03:21:13 +0100
commit62287f73dc211d3785c599646588a9b4737afa06 (patch)
treea0bc2af9e1e4f1d950bdfc57a1e7d830abbcf6f1
parentd6af20c63775070df7dc917001ae2be3dffc51ff (diff)
downloadlibchamplain-62287f73dc211d3785c599646588a9b4737afa06.tar.gz
meson: Adjust the comment about lib_version
Fix a copy-paste error and make it clearer this isn't libtool's Current:Revision:Age.
-rw-r--r--meson.build10
1 files changed, 5 insertions, 5 deletions
diff --git a/meson.build b/meson.build
index 47cddc7..54cb0e4 100644
--- a/meson.build
+++ b/meson.build
@@ -23,13 +23,13 @@ api_version = '@0@.@1@'.format(
version_minor.is_odd() ? version_minor + 1 : version_minor,
)
-# Before making a release, the LT_VERSION string should be modified.
-# The string is of the form C.A.R
-# - If the interface is the same as the previous version, change to C.A.R+1
+# Before making a release, the lib_version string should be modified.
+# The string is of the form X.Y.Z
+# - If the interface is the same as the previous version, change to X.Y.Z+1
# - If interfaces have been changed or added, but binary compatibility has
-# been preserved, change to C.A+1.R
+# been preserved, change to X.Y+1.0
# - If binary compatibility has been broken (eg removed or changed interfaces)
-# change to C+1.0.0
+# change to X+1.0.0
lib_version = '0.11.8'
package_name = meson.project_name().strip('lib')