summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Withnall <withnall@endlessm.com>2019-06-25 12:52:00 +0100
committerPhilip Withnall <withnall@endlessm.com>2019-06-25 12:56:04 +0100
commitf54d68f961015f85595b956ff0143a6ee0c41ff7 (patch)
tree6fe19c3a6146b5335554996530421560d12b4a30
parent4040bb06e1473be10601c88c92868f39d1958349 (diff)
downloadlibgdata-f54d68f961015f85595b956ff0143a6ee0c41ff7.tar.gz
Release version 0.17.100.17.10
Signed-off-by: Philip Withnall <withnall@endlessm.com>
-rw-r--r--NEWS30
-rw-r--r--docs/reference/gdata-docs.xml4
-rw-r--r--meson.build4
3 files changed, 36 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 83fab2bf..99918a6c 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,33 @@
+Overview of changes from libgdata 0.17.9 to libgdata 0.17.10
+============================================================
+
+* Port to Meson and drop autotools support (#27)
+
+* Migrate from intltool to gettext (bug #787252)
+
+* Bugs fixed:
+ - #26 Support deleting shared Google Drive files
+ - #27 Port to Meson
+ - !1 Remove use of foreach with wrong function prototype and use g_list_free_full
+ - !3 core: Move the header guards before including other headers
+ - !4 tasks: Turn 'position' and 'parent' into writable properties
+ - Bug 787252 — [Patch] Migrate from intltool to gettext
+
+* Translation updates:
+ - Catalan
+ - Chinese (Taiwan)
+ - Croatian
+ - Danish
+ - Dutch
+ - English (United Kingdom)
+ - Esperanto
+ - French
+ - Indonesian
+ - Nepali
+ - Romanian
+ - Turkish
+
+
Overview of changes from libgdata 0.17.8 to libgdata 0.17.9
===========================================================
diff --git a/docs/reference/gdata-docs.xml b/docs/reference/gdata-docs.xml
index e71fb12f..9c1456ff 100644
--- a/docs/reference/gdata-docs.xml
+++ b/docs/reference/gdata-docs.xml
@@ -304,6 +304,10 @@
<title>Index of new symbols in 0.17.9</title>
<xi:include href="xml/api-index-0.17.9.xml"><xi:fallback/></xi:include>
</index>
+ <index role="0.17.10">
+ <title>Index of new symbols in 0.17.10</title>
+ <xi:include href="xml/api-index-0.17.10.xml"><xi:fallback/></xi:include>
+ </index>
<xi:include href="xml/annotation-glossary.xml"><xi:fallback /></xi:include>
</part>
</book>
diff --git a/meson.build b/meson.build
index df058198..7d2f5254 100644
--- a/meson.build
+++ b/meson.build
@@ -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 = 25
+current = 26
revision = 0
-age = 3
+age = 4
gdata_soversion = '@0@.@1@.@2@'.format(current - age, age, revision)
top_inc_dir = include_directories('.')