summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS25
-rw-r--r--configure.ac2
-rw-r--r--docs/reference/gdata-docs.xml4
-rw-r--r--gdata/services/documents/gdata-documents-utils.c2
4 files changed, 31 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 97d521a7..83fab2bf 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,28 @@
+Overview of changes from libgdata 0.17.8 to libgdata 0.17.9
+===========================================================
+
+Major changes:
+ • Support reporting quotas for Drive usage (thanks to Michael Terry)
+ • Bump GLib dependency to 2.44 for g_autoptr() support
+ • Add g_autoptr() support for some core classes
+ • Port from GSimpleAsyncResult to GTask
+ • More porting to the Google Drive v2 API
+ (ongoing thanks to Debarshi Ray for working on and maintaining this)
+
+API changes:
+ • Add GDataDocumentsMetadata
+ • Add gdata_documents_service_get_metadata(),
+ gdata_documents_service_get_metadata_async(),
+ gdata_documents_service_get_metadata_finish()
+ • Initial g_autoptr() support for core classes
+
+Bugs fixed:
+ • Bug 783046 — Invalid URIs are generated when q and q_internal properties are set
+ • GitHub PR #1 — added initial .travis.yml
+ • Bug 785885 — Expose information about quota usage
+ • Bug 684920 — Port to Google Drive API v2
+
+
Overview of changes from libgdata 0.17.7 to libgdata 0.17.8
===========================================================
diff --git a/configure.ac b/configure.ac
index 25bfb5d7..9c721a51 100644
--- a/configure.ac
+++ b/configure.ac
@@ -60,7 +60,7 @@ GDK_PIXBUF_MAX_ALLOWED=GDK_VERSION_2_14
# 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
-GDATA_LT_VERSION=24:1:2
+GDATA_LT_VERSION=25:0:3
AC_SUBST(GDATA_LT_VERSION)
GDATA_VERSION_MAJOR=gdata_version_major
diff --git a/docs/reference/gdata-docs.xml b/docs/reference/gdata-docs.xml
index aeb18848..817dfbe3 100644
--- a/docs/reference/gdata-docs.xml
+++ b/docs/reference/gdata-docs.xml
@@ -300,6 +300,10 @@
<title>Index of new symbols in 0.17.7</title>
<xi:include href="xml/api-index-0.17.7.xml"><xi:fallback/></xi:include>
</index>
+ <index role="0.17.9">
+ <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>
<xi:include href="xml/annotation-glossary.xml"><xi:fallback /></xi:include>
</part>
</book>
diff --git a/gdata/services/documents/gdata-documents-utils.c b/gdata/services/documents/gdata-documents-utils.c
index f60f71df..b2e19d51 100644
--- a/gdata/services/documents/gdata-documents-utils.c
+++ b/gdata/services/documents/gdata-documents-utils.c
@@ -129,7 +129,7 @@ gdata_documents_utils_get_content_type (GDataDocumentsEntry *entry)
*
* Return value: (nullable): ID of @_link, %NULL otherwise
*
- * Since: UNRELEASED
+ * Since: 0.17.9
*/
const gchar *
gdata_documents_utils_get_id_from_link (GDataLink *_link)