[libgdata] Release version 0.15.0



commit f82031b21f0f05c69ecbbccbc6068d53cba9c6ab
Author: Philip Withnall <philip tecnocode co uk>
Date:   Thu Dec 19 01:50:51 2013 +0000

    Release version 0.15.0

 NEWS                                        |   66 +++++++++++++++++++++++++++
 configure.ac                                |    2 +-
 docs/reference/gdata-docs.xml               |    4 ++
 gdata/gdata-parsable.c                      |    6 +-
 gdata/gdata-parser.c                        |    6 +-
 gdata/services/tasks/gdata-tasks-query.c    |   46 +++++++++---------
 gdata/services/tasks/gdata-tasks-query.h    |    4 +-
 gdata/services/tasks/gdata-tasks-service.c  |   38 ++++++++--------
 gdata/services/tasks/gdata-tasks-service.h  |    4 +-
 gdata/services/tasks/gdata-tasks-task.c     |   46 +++++++++---------
 gdata/services/tasks/gdata-tasks-task.h     |    4 +-
 gdata/services/tasks/gdata-tasks-tasklist.c |    4 +-
 gdata/services/tasks/gdata-tasks-tasklist.h |    4 +-
 13 files changed, 152 insertions(+), 82 deletions(-)
---
diff --git a/NEWS b/NEWS
index d86e152..4e8e46a 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,69 @@
+Overview of changes from libgdata 0.14.0 to libgdata 0.15.0
+===========================================================
+
+Major changes:
+ • Add JSON support and a Google Tasks service (thanks to Pēteris Krišjānis)
+  - This adds a dependency on json-glib ≥ 0.15 and breaks ABI (but not API)
+ • Add support for GProxyResolver proxies (thanks to Matthew Barnes)
+ • Fix build with recent gnome-common versions
+ • Fix build and installed header files for C++
+ • Remove deprecated function calls
+ • Fix compilation with -fstrict-aliasing
+ • Port local tests to use libuhttpmock (which is a new dependency)
+
+API changes:
+ • Add gdata_parsable_new_from_json()
+ • Add gdata_parsable_get_json()
+ • Add GDataParsable->get_content_type
+ • Add GDataService:proxy-resolver, gdata_service_get_proxy_resolver(),
+   gdata_service_set_proxy_resolver()
+ • Add GDataClientLoginAuthorizer:proxy-resolver,
+   gdata_client_login_authorizer_get_proxy_resolver(),
+   gdata_client_login_authorizer_set_proxy_resolver()
+ • Add GDataOAuth1Authorizer:proxy-resolver,
+   gdata_oauth1_authorizer_get_proxy_resolver(),
+   gdata_oauth1_authorizer_set_proxy_resolver()
+ • Add Google Tasks service: GDataTasksService, GDataTasksQuery,
+   GDataTasksTasklist, GDataTasksTask
+
+Bugs fixed:
+ • Bug 712565 — Fix compilation's warnings
+ • Bug 719647 — gdata-goa-authorizer.h broken for C++
+
+Updated translations:
+ • as (Nilamdyuti Goswami)
+ • be (Ihar Hrachyshka)
+ • ca (Gil Forcada)
+ • cs (Marek Černocký)
+ • da (Aputsiaq Niels Janussen)
+ • de (Christian Kirbach)
+ • el (Dimitris Spingos, Efstathios Iosifidis)
+ • es (Daniel Mustieles)
+ • et (Mattias Põldaru)
+ • fi (Jiri Grönroos)
+ • fr (Bruno Brouard)
+ • gl (Fran Dieguez)
+ • hu (Gabor Kelemen)
+ • id (Andika Triwidada)
+ • it (Claudio Arseni, Milo Casagrande)
+ • ja (Jiro Matsuzawa)
+ • ko (Changwoo Ryu)
+ • lt (Aurimas Černius)
+ • lv (Rūdolfs Mazurs)
+ • nb (Kjartan Maraas)
+ • pa (A S Alam)
+ • pl (Piotr Drąg)
+ • pt (António Lima)
+ • pt_BR (Enrico Nicoletto)
+ • ru (Yuri Myasoedov)
+ • sk (Ján Kyselica)
+ • sl (Matej Urbančič)
+ • sr (Мирослав Николић)
+ • th (Akom Chotiphantawanon)
+ • zh_CN (甘露)
+ • zh_HK (Chao-Hsiung Liao)
+ • zh_TW (Chao-Hsiung Liao)
+
 Overview of changes from libgdata 0.13.4 to libgdata 0.14.0
 ===========================================================
 
diff --git a/configure.ac b/configure.ac
index 154ce67..ddadc95 100644
--- a/configure.ac
+++ b/configure.ac
@@ -49,7 +49,7 @@ JSON_GLIB_REQS=0.15
 #  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=18:2:5
+GDATA_LT_VERSION=19:0:0
 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 ace80ad..23d045f 100644
--- a/docs/reference/gdata-docs.xml
+++ b/docs/reference/gdata-docs.xml
@@ -259,6 +259,10 @@
                        <title>Index of new symbols in 0.13.4</title>
                        <xi:include href="xml/api-index-0.13.4.xml"><xi:fallback/></xi:include>
                </index>
+               <index role="0.15.0">
+                       <title>Index of new symbols in 0.15.0</title>
+                       <xi:include href="xml/api-index-0.15.0.xml"><xi:fallback/></xi:include>
+               </index>
                <xi:include href="xml/annotation-glossary.xml"><xi:fallback /></xi:include>
        </part>
 </book>
diff --git a/gdata/gdata-parsable.c b/gdata/gdata-parsable.c
index 2472c76..357418a 100644
--- a/gdata/gdata-parsable.c
+++ b/gdata/gdata-parsable.c
@@ -444,7 +444,7 @@ _gdata_parsable_new_from_xml_node (GType parsable_type, xmlDoc *doc, xmlNode *no
  *
  * Return value: a new #GDataParsable, or %NULL; unref with g_object_unref()
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 GDataParsable *
 gdata_parsable_new_from_json (GType parsable_type, const gchar *json, gint length, GError **error)
@@ -669,7 +669,7 @@ _gdata_parsable_get_xml (GDataParsable *self, GString *xml_string, gboolean decl
  *
  * Return value: the object's JSON; free with g_free()
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 gchar *
 gdata_parsable_get_json (GDataParsable *self)
@@ -705,7 +705,7 @@ gdata_parsable_get_json (GDataParsable *self)
  *
  * Builds a JSON representation of the #GDataParsable in its current state, such that it could be inserted 
on the server.
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 void
 _gdata_parsable_get_json (GDataParsable *self, JsonBuilder *builder)
diff --git a/gdata/gdata-parser.c b/gdata/gdata-parser.c
index 53203b7..ff0f768 100644
--- a/gdata/gdata-parser.c
+++ b/gdata/gdata-parser.c
@@ -772,7 +772,7 @@ gdata_parser_object_from_element (xmlNode *element, const gchar *element_name, G
  *
  * Return value: %TRUE if @element matched @element_name, %FALSE otherwise
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 gboolean
 gdata_parser_string_from_json_member (JsonReader *reader, const gchar *member_name, GDataParserOptions 
options,
@@ -837,7 +837,7 @@ gdata_parser_string_from_json_member (JsonReader *reader, const gchar *member_na
  *
  * Return value: %TRUE if @element matched @element_name, %FALSE otherwise
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 gboolean
 gdata_parser_int64_time_from_json_member (JsonReader *reader, const gchar *member_name, GDataParserOptions 
options,
@@ -905,7 +905,7 @@ gdata_parser_int64_time_from_json_member (JsonReader *reader, const gchar *membe
  *
  * Return value: %TRUE if @member_name was found, %FALSE otherwise
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 gboolean
 gdata_parser_boolean_from_json_member (JsonReader *reader, const gchar *member_name, GDataParserOptions 
options, gboolean *output, gboolean *success, GError **error)
diff --git a/gdata/services/tasks/gdata-tasks-query.c b/gdata/services/tasks/gdata-tasks-query.c
index 61f008c..e8e2194 100644
--- a/gdata/services/tasks/gdata-tasks-query.c
+++ b/gdata/services/tasks/gdata-tasks-query.c
@@ -29,7 +29,7 @@
  * For more details of Google Tasks API, see the <ulink type="http" 
url="https://developers.google.com/google-apps/tasks/v1/reference/";>
  * online documentation</ulink>.
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 
 #include <config.h>
@@ -96,7 +96,7 @@ gdata_tasks_query_class_init (GDataTasksQueryClass *klass)
         * Upper bound for a task's completion date (as a RFC 3339 timestamp) to filter by. Optional.
         * The default is not to filter by completion date.
         *
-        * Since: UNRELEASED
+        * Since: 0.15.0
         */
        g_object_class_install_property (gobject_class, PROP_COMPLETED_MAX,
                                         g_param_spec_int64 ("completed-max",
@@ -110,7 +110,7 @@ gdata_tasks_query_class_init (GDataTasksQueryClass *klass)
         * Lower bound for a task's completion date (as a RFC 3339 timestamp) to filter by. Optional.
         * The default is not to filter by completion date.
         *
-        * Since: UNRELEASED
+        * Since: 0.15.0
         */
        g_object_class_install_property (gobject_class, PROP_COMPLETED_MIN,
                                         g_param_spec_int64 ("completed-min",
@@ -124,7 +124,7 @@ gdata_tasks_query_class_init (GDataTasksQueryClass *klass)
         * Upper bound for a task's due date (as a RFC 3339 timestamp) to filter by. Optional.
         * The default is not to filter by completion date.
         *
-        * Since: UNRELEASED
+        * Since: 0.15.0
         */
        g_object_class_install_property (gobject_class, PROP_DUE_MAX,
                                         g_param_spec_int64 ("due-max",
@@ -137,7 +137,7 @@ gdata_tasks_query_class_init (GDataTasksQueryClass *klass)
         *
         * Lower bound for a task's due date (as a RFC 3339 timestamp) to filter by. Optional.
         * The default is not to filter by completion date.
-        * Since: UNRELEASED
+        * Since: 0.15.0
         */
        g_object_class_install_property (gobject_class, PROP_DUE_MIN,
                                         g_param_spec_int64 ("due-min",
@@ -150,7 +150,7 @@ gdata_tasks_query_class_init (GDataTasksQueryClass *klass)
         *
         * Flag indicating whether completed tasks are returned in the result. Optional. The default is 
%FALSE.
         *
-        * Since: UNRELEASED
+        * Since: 0.15.0
         */
        g_object_class_install_property (gobject_class, PROP_SHOW_COMPLETED,
                                         g_param_spec_boolean ("show-completed",
@@ -163,7 +163,7 @@ gdata_tasks_query_class_init (GDataTasksQueryClass *klass)
         *
         * Flag indicating whether deleted tasks are returned in the result. Optional. The default is %FALSE.
         *
-        * Since: UNRELEASED
+        * Since: 0.15.0
         */
        g_object_class_install_property (gobject_class, PROP_SHOW_DELETED,
                                         g_param_spec_boolean ("show-deleted",
@@ -176,7 +176,7 @@ gdata_tasks_query_class_init (GDataTasksQueryClass *klass)
         *
         * Flag indicating whether hidden tasks are returned in the result. Optional. The default is %FALSE.
         *
-        * Since: UNRELEASED
+        * Since: 0.15.0
         */
        g_object_class_install_property (gobject_class, PROP_SHOW_HIDDEN,
                                         g_param_spec_boolean ("show-hidden",
@@ -367,7 +367,7 @@ get_query_uri (GDataQuery *self, const gchar *feed_uri, GString *query_uri, gboo
  *
  * Return value: a new #GDataTasksQuery
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 GDataTasksQuery *
 gdata_tasks_query_new (const gchar *q)
@@ -383,7 +383,7 @@ gdata_tasks_query_new (const gchar *q)
  *
  * Return value: the UNIX timestamp for the completed-max property, or <code class="literal">-1</code>
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 gint64
 gdata_tasks_query_get_completed_max (GDataTasksQuery *self)
@@ -402,7 +402,7 @@ gdata_tasks_query_get_completed_max (GDataTasksQuery *self)
  *
  * Set @completed_max to <code class="literal">-1</code> to unset the property in the query URI.
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 void
 gdata_tasks_query_set_completed_max (GDataTasksQuery *self, gint64 completed_max)
@@ -422,7 +422,7 @@ gdata_tasks_query_set_completed_max (GDataTasksQuery *self, gint64 completed_max
  *
  * Return value: the UNIX timestamp for the completed-min property, or <code class="literal">-1</code>
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 gint64
 gdata_tasks_query_get_completed_min (GDataTasksQuery *self)
@@ -441,7 +441,7 @@ gdata_tasks_query_get_completed_min (GDataTasksQuery *self)
  *
  * Set @completed_min to <code class="literal">-1</code> to unset the property in the query URI.
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 void
 gdata_tasks_query_set_completed_min (GDataTasksQuery *self, gint64 completed_min)
@@ -461,7 +461,7 @@ gdata_tasks_query_set_completed_min (GDataTasksQuery *self, gint64 completed_min
  *
  * Return value: the UNIX timestamp for the due-max property, or <code class="literal">-1</code>
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 gint64
 gdata_tasks_query_get_due_max (GDataTasksQuery *self)
@@ -480,7 +480,7 @@ gdata_tasks_query_get_due_max (GDataTasksQuery *self)
  *
  * Set @due_max to <code class="literal">-1</code> to unset the property in the query URI.
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 void
 gdata_tasks_query_set_due_max (GDataTasksQuery *self, gint64 due_max)
@@ -501,7 +501,7 @@ gdata_tasks_query_set_due_max (GDataTasksQuery *self, gint64 due_max)
  *
  * Return value: the UNIX timestamp for the due-min property, or <code class="literal">-1</code>
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 gint64
 gdata_tasks_query_get_due_min (GDataTasksQuery *self)
@@ -520,7 +520,7 @@ gdata_tasks_query_get_due_min (GDataTasksQuery *self)
  *
  * Set @due_min to <code class="literal">-1</code> to unset the property in the query URI.
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 void
 gdata_tasks_query_set_due_min (GDataTasksQuery *self, gint64 due_min)
@@ -540,7 +540,7 @@ gdata_tasks_query_set_due_min (GDataTasksQuery *self, gint64 due_min)
  *
  * Return value: the show-completed property
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 gboolean
 gdata_tasks_query_get_show_completed (GDataTasksQuery *self)
@@ -556,7 +556,7 @@ gdata_tasks_query_get_show_completed (GDataTasksQuery *self)
  *
  * Sets the #GDataTasksQuery:show-completed property of the #GDataTasksQuery.
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 void
 gdata_tasks_query_set_show_completed (GDataTasksQuery *self, gboolean show_completed)
@@ -575,7 +575,7 @@ gdata_tasks_query_set_show_completed (GDataTasksQuery *self, gboolean show_compl
  *
  * Return value: the show-deleted property
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 gboolean
 gdata_tasks_query_get_show_deleted (GDataTasksQuery *self)
@@ -591,7 +591,7 @@ gdata_tasks_query_get_show_deleted (GDataTasksQuery *self)
  *
  * Sets the #GDataTasksQuery:show-deleted property of the #GDataTasksQuery.
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 void
 gdata_tasks_query_set_show_deleted (GDataTasksQuery *self, gboolean show_deleted)
@@ -610,7 +610,7 @@ gdata_tasks_query_set_show_deleted (GDataTasksQuery *self, gboolean show_deleted
  *
  * Return value: the show-hidden property
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 gboolean
 gdata_tasks_query_get_show_hidden (GDataTasksQuery *self)
@@ -626,7 +626,7 @@ gdata_tasks_query_get_show_hidden (GDataTasksQuery *self)
  *
  * Sets the #GDataTasksQuery:show-hidden property of the #GDataTasksQuery.
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 void
 gdata_tasks_query_set_show_hidden (GDataTasksQuery *self, gboolean show_hidden)
diff --git a/gdata/services/tasks/gdata-tasks-query.h b/gdata/services/tasks/gdata-tasks-query.h
index 0882b26..e3bad97 100644
--- a/gdata/services/tasks/gdata-tasks-query.h
+++ b/gdata/services/tasks/gdata-tasks-query.h
@@ -42,7 +42,7 @@ typedef struct _GDataTasksQueryPrivate        GDataTasksQueryPrivate;
  *
  * All the fields in the #GDataTasksQuery structure are private and should never be accessed directly.
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 typedef struct {
        GDataQuery parent;
@@ -54,7 +54,7 @@ typedef struct {
  *
  * All the fields in the #GDataTasksQueryClass structure are private and should never be accessed directly.
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 typedef struct {
        /*< private >*/
diff --git a/gdata/services/tasks/gdata-tasks-service.c b/gdata/services/tasks/gdata-tasks-service.c
index b9aa759..401a423 100644
--- a/gdata/services/tasks/gdata-tasks-service.c
+++ b/gdata/services/tasks/gdata-tasks-service.c
@@ -29,7 +29,7 @@
  * For more details of Google Tasks API, see the <ulink type="http" 
url="https://developers.google.com/google-apps/tasks/v1/reference/";>
  * online documentation</ulink>.
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 
 #include <config.h>
@@ -77,7 +77,7 @@ get_authorization_domains (void)
  *
  * Return value: a new #GDataTasksService, or %NULL; unref with g_object_unref()
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 GDataTasksService *
 gdata_tasks_service_new (GDataAuthorizer *authorizer)
@@ -100,7 +100,7 @@ gdata_tasks_service_new (GDataAuthorizer *authorizer)
  *
  * Return value: (transfer none): the service's authorization domain
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 GDataAuthorizationDomain *
 gdata_tasks_service_get_primary_authorization_domain (void)
@@ -124,7 +124,7 @@ gdata_tasks_service_get_primary_authorization_domain (void)
  *
  * Return value: (transfer full): a #GDataFeed of query results; unref with g_object_unref()
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 GDataFeed *
 gdata_tasks_service_query_all_tasklists (GDataTasksService *self, GDataQuery *query, GCancellable 
*cancellable,
@@ -173,7 +173,7 @@ gdata_tasks_service_query_all_tasklists (GDataTasksService *self, GDataQuery *qu
  * For more details, see gdata_tasks_service_query_all_tasklists(), which is the synchronous version of
  * this function, and gdata_service_query_async(), which is the base asynchronous query function.
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 void
 gdata_tasks_service_query_all_tasklists_async (GDataTasksService *self, GDataQuery *query, GCancellable 
*cancellable,
@@ -222,7 +222,7 @@ gdata_tasks_service_query_all_tasklists_async (GDataTasksService *self, GDataQue
  *
  * Return value: (transfer full): a #GDataFeed of query results; unref with g_object_unref()
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 GDataFeed *
 gdata_tasks_service_query_tasks (GDataTasksService *self, GDataTasksTasklist *tasklist, GDataQuery *query, 
GCancellable *cancellable,
@@ -276,7 +276,7 @@ gdata_tasks_service_query_tasks (GDataTasksService *self, GDataTasksTasklist *ta
  * For more details, see gdata_tasks_service_query_tasks(), which is the synchronous version of this 
function, and gdata_service_query_async(),
  * which is the base asynchronous query function.
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 void
 gdata_tasks_service_query_tasks_async (GDataTasksService *self, GDataTasksTasklist *tasklist, GDataQuery 
*query, GCancellable *cancellable,
@@ -326,7 +326,7 @@ gdata_tasks_service_query_tasks_async (GDataTasksService *self, GDataTasksTaskli
  *
  * Return value: (transfer full): an updated #GDataTasksTask, or %NULL; unref with g_object_unref()
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 GDataTasksTask *
 gdata_tasks_service_insert_task (GDataTasksService *self, GDataTasksTask *task, GDataTasksTasklist 
*tasklist, GCancellable *cancellable, GError **error)
@@ -365,7 +365,7 @@ gdata_tasks_service_insert_task (GDataTasksService *self, GDataTasksTask *task,
  * For more details, see gdata_tasks_service_insert_task(), which is the synchronous version of this 
function, and
  * gdata_service_insert_entry_async(), which is the base asynchronous insertion function.
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 void
 gdata_tasks_service_insert_task_async (GDataTasksService *self, GDataTasksTask *task, GDataTasksTasklist 
*tasklist, GCancellable *cancellable,
@@ -397,7 +397,7 @@ gdata_tasks_service_insert_task_async (GDataTasksService *self, GDataTasksTask *
  *
  * Return value: (transfer full): an updated #GDataTasksTasklist, or %NULL; unref with g_object_unref()
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 GDataTasksTasklist *
 gdata_tasks_service_insert_tasklist (GDataTasksService *self, GDataTasksTasklist *tasklist, GCancellable 
*cancellable, GError **error)
@@ -434,7 +434,7 @@ gdata_tasks_service_insert_tasklist (GDataTasksService *self, GDataTasksTasklist
  * For more details, see gdata_tasks_service_insert_tasklist(), which is the synchronous version of this 
function, and
  * gdata_service_insert_entry_async(), which is the base asynchronous insertion function.
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 void
 gdata_tasks_service_insert_tasklist_async (GDataTasksService *self, GDataTasksTasklist *tasklist, 
GCancellable *cancellable,
@@ -465,7 +465,7 @@ gdata_tasks_service_insert_tasklist_async (GDataTasksService *self, GDataTasksTa
  *
  * Return value: %TRUE on success, %FALSE otherwise
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 gboolean
 gdata_tasks_service_delete_task (GDataTasksService *self, GDataTasksTask *task, GCancellable *cancellable, 
GError **error)
@@ -495,7 +495,7 @@ gdata_tasks_service_delete_task (GDataTasksService *self, GDataTasksTask *task,
  * For more details, see gdata_tasks_service_delete_task(), which is the synchronous version of this 
function, and
  * gdata_service_delete_entry_async(), which is the base asynchronous insertion function.
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 void
 gdata_tasks_service_delete_task_async (GDataTasksService *self, GDataTasksTask *task, GCancellable 
*cancellable,
@@ -522,7 +522,7 @@ gdata_tasks_service_delete_task_async (GDataTasksService *self, GDataTasksTask *
  *
  * Return value: %TRUE on success, %FALSE otherwise
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 gboolean
 gdata_tasks_service_delete_tasklist (GDataTasksService *self, GDataTasksTasklist *tasklist, GCancellable 
*cancellable, GError **error)
@@ -552,7 +552,7 @@ gdata_tasks_service_delete_tasklist (GDataTasksService *self, GDataTasksTasklist
  * For more details, see gdata_tasks_service_delete_tasklist(), which is the synchronous version of this 
function, and
  * gdata_service_delete_entry_async(), which is the base asynchronous insertion function.
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 void
 gdata_tasks_service_delete_tasklist_async (GDataTasksService *self, GDataTasksTasklist *tasklist, 
GCancellable *cancellable,
@@ -579,7 +579,7 @@ gdata_tasks_service_delete_tasklist_async (GDataTasksService *self, GDataTasksTa
  *
  * Return value: (transfer full): an updated #GDataTasksTask, or %NULL; unref with g_object_unref()
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 GDataTasksTask *
 gdata_tasks_service_update_task (GDataTasksService *self, GDataTasksTask *task, GCancellable *cancellable, 
GError **error)
@@ -609,7 +609,7 @@ gdata_tasks_service_update_task (GDataTasksService *self, GDataTasksTask *task,
  * For more details, see gdata_tasks_service_update_task(), which is the synchronous version of this 
function, and
  * gdata_service_update_entry_async(), which is the base asynchronous insertion function.
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 void
 gdata_tasks_service_update_task_async (GDataTasksService *self, GDataTasksTask *task, GCancellable 
*cancellable,
@@ -636,7 +636,7 @@ gdata_tasks_service_update_task_async (GDataTasksService *self, GDataTasksTask *
  *
  * Return value: (transfer full): an updated #GDataTasksTasklist, or %NULL; unref with g_object_unref()
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 GDataTasksTasklist *
 gdata_tasks_service_update_tasklist (GDataTasksService *self, GDataTasksTasklist *tasklist, GCancellable 
*cancellable, GError **error)
@@ -666,7 +666,7 @@ gdata_tasks_service_update_tasklist (GDataTasksService *self, GDataTasksTasklist
  * For more details, see gdata_tasks_service_update_tasklist(), which is the synchronous version of this 
function, and
  * gdata_service_update_entry_async(), which is the base asynchronous insertion function.
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 void
 gdata_tasks_service_update_tasklist_async (GDataTasksService *self, GDataTasksTasklist *tasklist, 
GCancellable *cancellable,
diff --git a/gdata/services/tasks/gdata-tasks-service.h b/gdata/services/tasks/gdata-tasks-service.h
index 8c54ea3..a1f80c1 100644
--- a/gdata/services/tasks/gdata-tasks-service.h
+++ b/gdata/services/tasks/gdata-tasks-service.h
@@ -42,7 +42,7 @@ G_BEGIN_DECLS
  *
  * All the fields in the #GDataTasksService structure are private and should never be accessed directly.
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 typedef struct {
        GDataService parent;
@@ -53,7 +53,7 @@ typedef struct {
  *
  * All the fields in the #GDataTasksServiceClass structure are private and should never be accessed directly.
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 typedef struct {
        /*< private >*/
diff --git a/gdata/services/tasks/gdata-tasks-task.c b/gdata/services/tasks/gdata-tasks-task.c
index 24e812f..7580f63 100644
--- a/gdata/services/tasks/gdata-tasks-task.c
+++ b/gdata/services/tasks/gdata-tasks-task.c
@@ -28,7 +28,7 @@
  * For more details of Google Tasks API, see the <ulink type="http" 
url="https://developers.google.com/google-apps/tasks/v1/reference/";>
  * online documentation</ulink>.
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 
 #include <config.h>
@@ -95,7 +95,7 @@ gdata_tasks_task_class_init (GDataTasksTaskClass *klass)
         *
         * Parent task identifier. This field is omitted if it is a top-level task. This field is read-only.
         *
-        * Since: UNRELEASED
+        * Since: 0.15.0
         */
        g_object_class_install_property (gobject_class, PROP_PARENT,
                                         g_param_spec_string ("parent",
@@ -111,7 +111,7 @@ gdata_tasks_task_class_init (GDataTasksTaskClass *klass)
         * according to lexicographical ordering, the task is positioned after the other task under the same
         * parent task (or at the top level). This field is read-only.
         *
-        * Since: UNRELEASED
+        * Since: 0.15.0
         */
        g_object_class_install_property (gobject_class, PROP_STATUS,
                                         g_param_spec_string ("position",
@@ -124,7 +124,7 @@ gdata_tasks_task_class_init (GDataTasksTaskClass *klass)
         *
         * This is where the description of what needs to be done in the task is stored.
         *
-        * Since: UNRELEASED
+        * Since: 0.15.0
         */
        g_object_class_install_property (gobject_class, PROP_NOTES,
                                         g_param_spec_string ("notes",
@@ -137,7 +137,7 @@ gdata_tasks_task_class_init (GDataTasksTaskClass *klass)
         *
         * Status of the task. This is either "needsAction" or "completed".
         *
-        * Since: UNRELEASED
+        * Since: 0.15.0
         */
        g_object_class_install_property (gobject_class, PROP_STATUS,
                                         g_param_spec_string ("status",
@@ -151,7 +151,7 @@ gdata_tasks_task_class_init (GDataTasksTaskClass *klass)
         * Due date of the task (as a RFC 3339 timestamp).
         * This field is <code class="literal">-1</code> if task has not due date asigned.
         *
-        * Since: UNRELEASED
+        * Since: 0.15.0
         */
        g_object_class_install_property (gobject_class, PROP_DUE,
                                         g_param_spec_int64 ("due",
@@ -165,7 +165,7 @@ gdata_tasks_task_class_init (GDataTasksTaskClass *klass)
         * Completion date of the task (as a RFC 3339 timestamp).
         * This field is <code class="literal">-1</code> if the task has not been completed.
         *
-        * Since: UNRELEASED
+        * Since: 0.15.0
         */
        g_object_class_install_property (gobject_class, PROP_COMPLETED,
                                         g_param_spec_int64 ("completed",
@@ -178,7 +178,7 @@ gdata_tasks_task_class_init (GDataTasksTaskClass *klass)
         *
         * Flag indicating whether the task has been deleted. The default is %FALSE.
         *
-        * Since: UNRELEASED
+        * Since: 0.15.0
         */
        g_object_class_install_property (gobject_class, PROP_DELETED,
                                         g_param_spec_boolean ("is-deleted",
@@ -193,7 +193,7 @@ gdata_tasks_task_class_init (GDataTasksTaskClass *klass)
         * had been marked completed when the task list was last cleared.
         * The default is %FALSE. This field is read-only.
         *
-        * Since: UNRELEASED
+        * Since: 0.15.0
         */
        g_object_class_install_property (gobject_class, PROP_HIDDEN,
                                         g_param_spec_boolean ("is-hidden",
@@ -380,7 +380,7 @@ get_content_type (void)
  *
  * Return value: a new #GDataTasksTask; unref with g_object_unref()
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 GDataTasksTask *
 gdata_tasks_task_new (const gchar *id)
@@ -396,7 +396,7 @@ gdata_tasks_task_new (const gchar *id)
  *
  * Return value: (allow-none): the parent of the task, or %NULL
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 const gchar *
 gdata_tasks_task_get_parent (GDataTasksTask *self)
@@ -413,7 +413,7 @@ gdata_tasks_task_get_parent (GDataTasksTask *self)
  *
  * Return value: (allow-none): the position of the task, or %NULL
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 const gchar *
 gdata_tasks_task_get_position (GDataTasksTask *self)
@@ -430,7 +430,7 @@ gdata_tasks_task_get_position (GDataTasksTask *self)
  *
  * Return value: (allow-none): notes of the task, or %NULL
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 const gchar *
 gdata_tasks_task_get_notes (GDataTasksTask *self)
@@ -448,7 +448,7 @@ gdata_tasks_task_get_notes (GDataTasksTask *self)
  *
  * Set @notes to %NULL to unset the property in the task.
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 void
 gdata_tasks_task_set_notes (GDataTasksTask *self, const gchar *notes)
@@ -470,7 +470,7 @@ gdata_tasks_task_set_notes (GDataTasksTask *self, const gchar *notes)
  *
  * Return value: (allow-none): the status of the task, or %NULL
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 const gchar *
 gdata_tasks_task_get_status (GDataTasksTask *self)
@@ -488,7 +488,7 @@ gdata_tasks_task_get_status (GDataTasksTask *self)
  *
  * Set @status to %NULL to unset the property in the task.
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 void
 gdata_tasks_task_set_status (GDataTasksTask *self, const gchar *status)
@@ -510,7 +510,7 @@ gdata_tasks_task_set_status (GDataTasksTask *self, const gchar *status)
  *
  * Return value: the due property, or <code class="literal">-1</code>
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 gint64
 gdata_tasks_task_get_due (GDataTasksTask *self)
@@ -528,7 +528,7 @@ gdata_tasks_task_get_due (GDataTasksTask *self)
  *
  * Set @due to <code class="literal">-1</code> to unset the property in the due time of the task
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 void
 gdata_tasks_task_set_due (GDataTasksTask *self, gint64 due)
@@ -548,7 +548,7 @@ gdata_tasks_task_set_due (GDataTasksTask *self, gint64 due)
  *
  * Return value: the completed property, or <code class="literal">-1</code>
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 gint64
 gdata_tasks_task_get_completed (GDataTasksTask *self)
@@ -566,7 +566,7 @@ gdata_tasks_task_get_completed (GDataTasksTask *self)
  *
  * Set @completed to <code class="literal">-1</code> to unset the property in the completion time of the task
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 void
 gdata_tasks_task_set_completed (GDataTasksTask *self, gint64 completed)
@@ -586,7 +586,7 @@ gdata_tasks_task_set_completed (GDataTasksTask *self, gint64 completed)
  *
  * Return value: %TRUE if task is deleted, %FALSE otherwise
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 gboolean
 gdata_tasks_task_is_deleted (GDataTasksTask *self)
@@ -602,7 +602,7 @@ gdata_tasks_task_is_deleted (GDataTasksTask *self)
  *
  * Sets the #GDataTasksTask:is-deleted property to @deleted.
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 void
 gdata_tasks_task_set_is_deleted (GDataTasksTask *self, gboolean deleted)
@@ -620,7 +620,7 @@ gdata_tasks_task_set_is_deleted (GDataTasksTask *self, gboolean deleted)
  *
  * Return value: %TRUE if task is hidden, %FALSE otherwise
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 gboolean
 gdata_tasks_task_is_hidden (GDataTasksTask *self)
diff --git a/gdata/services/tasks/gdata-tasks-task.h b/gdata/services/tasks/gdata-tasks-task.h
index e791c7d..e1f7d71 100644
--- a/gdata/services/tasks/gdata-tasks-task.h
+++ b/gdata/services/tasks/gdata-tasks-task.h
@@ -42,7 +42,7 @@ typedef struct _GDataTasksTaskPrivate GDataTasksTaskPrivate;
  *
  * All the fields in the #GDataTasksTask structure are private and should never be accessed directly.
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 typedef struct {
        GDataEntry parent;
@@ -54,7 +54,7 @@ typedef struct {
  *
  * All the fields in the #GDataTasksTaskClass structure are private and should never be accessed directly.
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 typedef struct {
        /*< private >*/
diff --git a/gdata/services/tasks/gdata-tasks-tasklist.c b/gdata/services/tasks/gdata-tasks-tasklist.c
index eba4dcf..eed7eaa 100644
--- a/gdata/services/tasks/gdata-tasks-tasklist.c
+++ b/gdata/services/tasks/gdata-tasks-tasklist.c
@@ -28,7 +28,7 @@
  * For more details of Google Tasks API, see the <ulink type="http" 
url="https://developers.google.com/google-apps/tasks/v1/reference/";>
  * online documentation</ulink>.
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 
 #include <config.h>
@@ -71,7 +71,7 @@ get_content_type (void)
  *
  * Return value: (transfer full): a new #GDataTasksTasklist; unref with g_object_unref()
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 GDataTasksTasklist *
 gdata_tasks_tasklist_new (const gchar *id)
diff --git a/gdata/services/tasks/gdata-tasks-tasklist.h b/gdata/services/tasks/gdata-tasks-tasklist.h
index db5d792..5ae6264 100644
--- a/gdata/services/tasks/gdata-tasks-tasklist.h
+++ b/gdata/services/tasks/gdata-tasks-tasklist.h
@@ -40,7 +40,7 @@ G_BEGIN_DECLS
  *
  * All the fields in the #GDataTasksTasklist structure are private and should never be accessed directly.
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 typedef struct {
        GDataEntry parent;
@@ -51,7 +51,7 @@ typedef struct {
  *
  * All the fields in the #GDataTasksTasklistClass structure are private and should never be accessed 
directly.
  *
- * Since: UNRELEASED
+ * Since: 0.15.0
  */
 
 typedef struct {


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