summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS34
-rw-r--r--meson.build6
2 files changed, 37 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index 99918a6c..4d467645 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,37 @@
+Overview of changes from libgdata 0.17.10 to libgdata 0.17.11
+=============================================================
+
+* Various fixes to the Meson port, including a soversion fix (#30, #32, #35, !9, !10)
+
+* Add support for user-specified properties of documents in Drive (!7)
+
+* Bugs fixed:
+ - #30 meson: debug messages of libgdata don't come from correct log domain - "libgdata"
+ - #31 gdata_entry_get_id should not free current value if not changed
+ - #32 Build failure on Continuous
+ - #33 en_GBism in a string
+ - #35 Installed tests fails with an assert in gdata_oauth2_authorizer_request_authorization
+ - !7 Drive v2 Properties API
+ - !9 Meson fixes
+ - !10 meson minor fixes
+ - !13 docs: Drop use of `<!-- -->` to delimit plurals
+ - !16 Minor revision of italian translation (after >2ys)
+
+* Translation updates:
+ - Basque
+ - Czech
+ - English (United Kingdom)
+ - German
+ - Indonesian
+ - Italian
+ - Lithuanian
+ - Polish
+ - Portuguese (Brazil)
+ - Romanian
+ - Spanish
+ - Swedish
+
+
Overview of changes from libgdata 0.17.9 to libgdata 0.17.10
============================================================
diff --git a/meson.build b/meson.build
index f9686ea3..50441abb 100644
--- a/meson.build
+++ b/meson.build
@@ -1,6 +1,6 @@
project(
'libgdata', 'c',
- version: '0.17.10',
+ version: '0.17.11',
license: 'LGPL2+',
default_options: 'buildtype=debugoptimized',
meson_version: '>= 0.50.0',
@@ -34,9 +34,9 @@ gdata_include_subdir = gdata_name / 'gdata'
# 4. If any interfaces have been removed or changed since the last public release, then set age to 0.
#
# Note that versioning started at 2:0:0 to ensure no conflicts with e-d-s' libgdata library, whose maximum version was 1:0:0
-current = 26
+current = 27
revision = 0
-age = 4
+age = 5
gdata_soversion = '@0@.@1@.@2@'.format(current - age, age, revision)
top_inc_dir = include_directories('.')