summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJiří Techet <techet@gmail.com>2019-02-21 12:13:28 +0100
committerJiří Techet <techet@gmail.com>2019-02-21 12:13:28 +0100
commit3abc28430124256660a7321da1fa6571f2975ad7 (patch)
tree54930b293e475edaa1b4df8e2e7e4f4e52dfaa27
parent57d491927677b4c7e7bded8367ac3e449a1acd19 (diff)
downloadlibchamplain-3abc28430124256660a7321da1fa6571f2975ad7.tar.gz
-rw-r--r--NEWS12
-rw-r--r--configure.ac2
-rw-r--r--meson.build2
3 files changed, 14 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 9c2dfde..fdfdcdc 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,15 @@
+libchamplain 0.12.18 (2019-02-21)
+=================================
+
+Stable release
+
+Changes:
+
+* Fix incorrect so version when using meson (Jiří Techet)
+* Avoid exporting marshaler functions by dropping the use of glib-genmarshal and
+ using the generic marshaler instead (Jiří Techet)
+* Don't use glib-mkenums for champlain-gtk where it's not needed (Jiří Techet)
+
libchamplain 0.12.17 (2019-02-20)
=================================
diff --git a/configure.ac b/configure.ac
index 445aec8..b615e98 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=11:7:11
+LIBRARY_VERSION=11:8: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 5366d9d..1f0b69d 100644
--- a/meson.build
+++ b/meson.build
@@ -31,7 +31,7 @@ endif
# 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
-lib_version = '0.11.7'
+lib_version = '0.11.8'
package_name = meson.project_name().strip('lib')
package_string = '@0@-@1@'.format(package_name, api_version)