[libchamplain] Fix incorrect format of library version in meson



commit 57d491927677b4c7e7bded8367ac3e449a1acd19
Author: Jiří Techet <techet gmail com>
Date:   Thu Feb 21 12:12:39 2019 +0100

    Fix incorrect format of library version in meson

 meson.build | 8 ++++----
 1 file 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)


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]