summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJiří Techet <techet@gmail.com>2019-02-21 12:12:39 +0100
committerJiří Techet <techet@gmail.com>2019-02-21 12:12:39 +0100
commit57d491927677b4c7e7bded8367ac3e449a1acd19 (patch)
tree024968beff48e8f0835ea77230c756cd116f2838
parentcc66af7d244431350bc80e08f48a51c8e8a5e616 (diff)
downloadlibchamplain-57d491927677b4c7e7bded8367ac3e449a1acd19.tar.gz
Fix incorrect format of library version in meson
-rw-r--r--meson.build8
1 files changed, 4 insertions, 4 deletions
diff --git a/meson.build b/meson.build
index d4ec164..5366d9d 100644
--- a/meson.build
+++ b/meson.build
@@ -25,13 +25,13 @@ else
endif
# Before making a release, the LT_VERSION string should be modified.
-# The string is of the form C.R.A.
+# 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
# - If interfaces have been changed or added, but binary compatibility has
-# been preserved, change to C+1.0.A+1
+# been preserved, change to C.A+1.R
# - If binary compatibility has been broken (eg removed or changed interfaces)
# change to C+1.0.0
-# - If the interface is the same as the previous version, change to C.R+1.A
-lib_version = '11.7.11'
+lib_version = '0.11.7'
package_name = meson.project_name().strip('lib')
package_string = '@0@-@1@'.format(package_name, api_version)