summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJiří Techet <techet@gmail.com>2019-02-20 19:35:24 +0100
committerJiří Techet <techet@gmail.com>2019-02-20 19:36:27 +0100
commitbfba8a09d7009264bd1bde6a549eb9b75b5a067c (patch)
tree2dd61c8f45b041bf92c1e34695d5a18fd2f5fc37
parent3ea060e4975f31c975e3894c2a107aa6cdabc18d (diff)
downloadlibchamplain-bfba8a09d7009264bd1bde6a549eb9b75b5a067c.tar.gz
Update and fix LIBRARY_VERSION numbers
Somewhere in the past the "revision" number was zeroed - fix that and update version for the 0.12.17 release.
-rw-r--r--configure.ac2
-rw-r--r--meson.build10
2 files changed, 6 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac
index 42d9804..e8bc85b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -36,7 +36,7 @@ AM_PROG_CC_C_O
# - 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
-LIBRARY_VERSION=10:0:10
+LIBRARY_VERSION=11:7:11
CHAMPLAIN_API_VERSION=champlain_api_version
CHAMPLAIN_API_VERSION_NORM=champlain_major_version[_]champlain_minor_api_version
CHAMPLAIN_MAJOR_VERSION=champlain_major_version
diff --git a/meson.build b/meson.build
index 31a96d6..aee3b04 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.R.A.
# - 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+1.0.A+1
# - 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 = '0.10.0'
+# 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'
package_name = meson.project_name().strip('lib')
package_string = '@0@-@1@'.format(package_name, api_version)