[libgdata] Release version 0.10.0



commit 5abf775c62e081ef0b11f4872aaa2afa8c6efb7d
Author: Philip Withnall <philip tecnocode co uk>
Date:   Sat Aug 20 19:06:57 2011 +0100

    Release version 0.10.0

 NEWS                                               |   42 ++++++++++++++++++++
 configure.ac                                       |    6 +-
 docs/reference/gdata-docs.xml                      |    4 ++
 gdata/gd/gdata-gd-feed-link.c                      |   26 ++++++------
 gdata/gd/gdata-gd-feed-link.h                      |    4 +-
 gdata/gdata-comment.c                              |    2 +-
 gdata/gdata-comment.h                              |    4 +-
 gdata/gdata-commentable.c                          |   20 +++++-----
 gdata/gdata-commentable.h                          |    4 +-
 gdata/gdata-entry.c                                |    2 +-
 gdata/services/picasaweb/gdata-picasaweb-comment.c |    4 +-
 gdata/services/picasaweb/gdata-picasaweb-comment.h |    4 +-
 gdata/services/youtube/gdata-youtube-comment.c     |   10 ++--
 gdata/services/youtube/gdata-youtube-comment.h     |    4 +-
 gdata/services/youtube/gdata-youtube-video.c       |    2 +-
 gdata/services/youtube/gdata-youtube-video.h       |    6 +-
 gdata/tests/common.h                               |   10 ++--
 17 files changed, 100 insertions(+), 54 deletions(-)
---
diff --git a/NEWS b/NEWS
index c157834..35ea80a 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,45 @@
+Overview of changes from libgdata 0.9.1 to libgdata 0.10.0
+==========================================================
+
+Major changes:
+* Added support for comments to YouTube and PicasaWeb (thanks to Richard Schwarting)
+* Added a âscrapbookâ demo application (thanks to Joe Cortes)
+* Added lots of cancellation tests
+
+API changes:
+* Added GDataCommentable
+* Added GDataComment, GDataYouTubeComment, GDataPicasaWebComment
+* Added gdata_entry_remove_link()
+* Added gdata_youtube_video_get_media_rating(), GDATA_YOUTUBE_RATING_TYPE_SIMPLE, GDATA_YOUTUBE_RATING_TYPE_MPAA, GDATA_YOUTUBE_RATING_TYPE_V_CHIP
+
+Bugs fixed:
+* Bug 618587 â Implement GDataGDFeedLink
+* Bug 598752 â Support comments
+* Bug 647882 â Support rating schemes
+* Bug 628069 â Add some demo applications
+* Bug 656529 â undefined references trying to compile/build libgdata
+* Bug 633364 â Add cancellation tests
+
+Updated translations:
+* bg (Alexander Shopov)
+* ca, ca valencia (Gil Forcada)
+* cs (Andre Klapper)
+* de (Mario BlÃttermann)
+* eo (Kristjan SCHMIDT)
+* es (Jorge GonzÃlez)
+* fr (Bruno Brouard)
+* gl (Fran DiÃguez)
+* he (Yaron Shahrabani)
+* id (Andika Triwidada)
+* lt (Aurimas Äernius)
+* lv (RÅdofls Mazurs)
+* nb (Kjartan Maraas)
+* ru (Yuri Kozlov)
+* sl (Matej UrbanÄiÄ)
+* sv (Daniel Nylander)
+* th (Akom Chotiphantawanon)
+* ug (Gheyret Kenji)
+
 Overview of changes from libgdata 0.9.0 to libgdata 0.9.1
 =========================================================
 
diff --git a/configure.ac b/configure.ac
index e113872..afda491 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2,8 +2,8 @@ AC_PREREQ(2.65)
 
 # Release version
 m4_define(gdata_version_major, 0)
-m4_define(gdata_version_minor, 9)
-m4_define(gdata_version_micro, 2)
+m4_define(gdata_version_minor, 10)
+m4_define(gdata_version_micro, 0)
 
 # API version
 # TODO: This currently isn't used in the library name; once we hit gdata_version_major=1, that should be changed
@@ -44,7 +44,7 @@ OAUTH_REQS=0.9.4
 #  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=13:0:0
+GDATA_LT_VERSION=14:0:1
 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 543a20d..41e0157 100644
--- a/docs/reference/gdata-docs.xml
+++ b/docs/reference/gdata-docs.xml
@@ -222,6 +222,10 @@
 			<title>Index of new symbols in 0.9.1</title>
 			<xi:include href="xml/api-index-0.9.1.xml"><xi:fallback/></xi:include>
 		</index>
+		<index role="0.10.0">
+			<title>Index of new symbols in 0.10.0</title>
+			<xi:include href="xml/api-index-0.10.0.xml"><xi:fallback/></xi:include>
+		</index>
 		<xi:include href="xml/annotation-glossary.xml"><xi:fallback /></xi:include>
 	</part>
 </book>
diff --git a/gdata/gd/gdata-gd-feed-link.c b/gdata/gd/gdata-gd-feed-link.c
index 2379c4d..3354895 100644
--- a/gdata/gd/gdata-gd-feed-link.c
+++ b/gdata/gd/gdata-gd-feed-link.c
@@ -34,7 +34,7 @@
  * In its current state, #GDataGDFeedLink supports the <code class="literal">href</code> attribute, but doesn't support inline
  * <code class="literal">feed</code> elements, since they don't seem to appear in the wild.
  *
- * Since: 0.9.2
+ * Since: 0.10.0
  */
 
 #include <glib.h>
@@ -95,7 +95,7 @@ gdata_gd_feed_link_class_init (GDataGDFeedLinkClass *klass)
 	 * For more information, see the
 	 * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdFeedLink";>GData specification</ulink>.
 	 *
-	 * Since: 0.9.2
+	 * Since: 0.10.0
 	 */
 	g_object_class_install_property (gobject_class, PROP_RELATION_TYPE,
 	                                 g_param_spec_string ("relation-type",
@@ -111,7 +111,7 @@ gdata_gd_feed_link_class_init (GDataGDFeedLinkClass *klass)
 	 * For more information, see the
 	 * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdFeedLink";>GData specification</ulink>.
 	 *
-	 * Since: 0.9.2
+	 * Since: 0.10.0
 	 */
 	g_object_class_install_property (gobject_class, PROP_URI,
 	                                 g_param_spec_string ("uri",
@@ -127,7 +127,7 @@ gdata_gd_feed_link_class_init (GDataGDFeedLinkClass *klass)
 	 * For more information, see the
 	 * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdFeedLink";>GData specification</ulink>.
 	 *
-	 * Since: 0.9.2
+	 * Since: 0.10.0
 	 */
 	g_object_class_install_property (gobject_class, PROP_COUNT_HINT,
 	                                 g_param_spec_int ("count-hint",
@@ -143,7 +143,7 @@ gdata_gd_feed_link_class_init (GDataGDFeedLinkClass *klass)
 	 * For more information, see the
 	 * <ulink type="http" url="http://code.google.com/apis/gdata/docs/2.0/elements.html#gdFeedLink";>GData specification</ulink>.
 	 *
-	 * Since: 0.9.2
+	 * Since: 0.10.0
 	 */
 	g_object_class_install_property (gobject_class, PROP_IS_READ_ONLY,
 	                                 g_param_spec_boolean ("is-read-only",
@@ -289,7 +289,7 @@ get_namespaces (GDataParsable *parsable, GHashTable *namespaces)
  *
  * Return value: the feed's relation to its owner, or %NULL
  *
- * Since: 0.9.2
+ * Since: 0.10.0
  */
 const gchar *
 gdata_gd_feed_link_get_relation_type (GDataGDFeedLink *self)
@@ -307,7 +307,7 @@ gdata_gd_feed_link_get_relation_type (GDataGDFeedLink *self)
  *
  * Return value: the related feed's URI
  *
- * Since: 0.9.2
+ * Since: 0.10.0
  */
 const gchar *
 gdata_gd_feed_link_get_uri (GDataGDFeedLink *self)
@@ -325,7 +325,7 @@ gdata_gd_feed_link_get_uri (GDataGDFeedLink *self)
  *
  * Return value: the potential number of entries in the related feed, or <code class="literal">-1</code> if not set
  *
- * Since: 0.9.2
+ * Since: 0.10.0
  */
 gint
 gdata_gd_feed_link_get_count_hint (GDataGDFeedLink *self)
@@ -343,7 +343,7 @@ gdata_gd_feed_link_get_count_hint (GDataGDFeedLink *self)
  *
  * Return value: %TRUE if the feed is read only, %FALSE otherwise
  *
- * Since: 0.9.2
+ * Since: 0.10.0
  */
 gboolean
 gdata_gd_feed_link_is_read_only (GDataGDFeedLink *self)
@@ -361,7 +361,7 @@ gdata_gd_feed_link_is_read_only (GDataGDFeedLink *self)
  * Sets the relation type of the #GDataGDFeedLink's related feed to @relation_type. If @relation_type is one of the standard Atom relation types,
  * use one of the defined relation type values, instead of a static string. e.g. %GDATA_LINK_EDIT or %GDATA_LINK_SELF.
  *
- * Since: 0.9.2
+ * Since: 0.10.0
  */
 void
 gdata_gd_feed_link_set_relation_type (GDataGDFeedLink *self, const gchar *relation_type)
@@ -392,7 +392,7 @@ gdata_gd_feed_link_set_relation_type (GDataGDFeedLink *self, const gchar *relati
  *
  * Sets the URI of the #GDataGDFeedLink's related feed to @uri.
  *
- * Since: 0.9.2
+ * Since: 0.10.0
  */
 void
 gdata_gd_feed_link_set_uri (GDataGDFeedLink *self, const gchar *uri)
@@ -413,7 +413,7 @@ gdata_gd_feed_link_set_uri (GDataGDFeedLink *self, const gchar *uri)
  *
  * Sets the number of entries in the #GDataGDFeedLink's related feed to @count_hint. This number may be an imprecise estimate.
  *
- * Since: 0.9.2
+ * Since: 0.10.0
  */
 void
 gdata_gd_feed_link_set_count_hint (GDataGDFeedLink *self, gint count_hint)
@@ -433,7 +433,7 @@ gdata_gd_feed_link_set_count_hint (GDataGDFeedLink *self, gint count_hint)
  *
  * Sets the read only status of the #GDataGDFeedLink's related feed to @is_read_only.
  *
- * Since: 0.9.2
+ * Since: 0.10.0
  */
 void
 gdata_gd_feed_link_set_is_read_only (GDataGDFeedLink *self, gboolean is_read_only)
diff --git a/gdata/gd/gdata-gd-feed-link.h b/gdata/gd/gdata-gd-feed-link.h
index 9e5c013..eeea002 100644
--- a/gdata/gd/gdata-gd-feed-link.h
+++ b/gdata/gd/gdata-gd-feed-link.h
@@ -41,7 +41,7 @@ typedef struct _GDataGDFeedLinkPrivate	GDataGDFeedLinkPrivate;
  *
  * All the fields in the #GDataGDFeedLink structure are private and should never be accessed directly.
  *
- * Since: 0.9.2
+ * Since: 0.10.0
  */
 typedef struct {
 	GDataParsable parent;
@@ -53,7 +53,7 @@ typedef struct {
  *
  * All the fields in the #GDataGDFeedLinkClass structure are private and should never be accessed directly.
  *
- * Since: 0.9.2
+ * Since: 0.10.0
  */
 typedef struct {
 	/*< private >*/
diff --git a/gdata/gdata-comment.c b/gdata/gdata-comment.c
index b201c9b..b1306a8 100644
--- a/gdata/gdata-comment.c
+++ b/gdata/gdata-comment.c
@@ -31,7 +31,7 @@
  * All subclasses of #GDataComment should ensure that the body of a comment is accessible using gdata_entry_get_content(), and that each comment has
  * at least one #GDataAuthor object representing the person who wrote the comment, accessible using gdata_entry_get_authors().
  *
- * Since: 0.9.2
+ * Since: 0.10.0
  */
 
 #include <config.h>
diff --git a/gdata/gdata-comment.h b/gdata/gdata-comment.h
index 1cd83ee..759879c 100644
--- a/gdata/gdata-comment.h
+++ b/gdata/gdata-comment.h
@@ -41,7 +41,7 @@ typedef struct _GDataCommentPrivate	GDataCommentPrivate;
  *
  * All the fields in the #GDataComment structure are private and should never be accessed directly.
  *
- * Since: 0.9.2
+ * Since: 0.10.0
  */
 typedef struct {
 	GDataEntry parent;
@@ -53,7 +53,7 @@ typedef struct {
  *
  * All the fields in the #GDataCommentClass structure are private and should never be accessed directly.
  *
- * Since: 0.9.2
+ * Since: 0.10.0
  */
 typedef struct {
 	/*< private >*/
diff --git a/gdata/gdata-commentable.c b/gdata/gdata-commentable.c
index 31e515e..57f4109 100644
--- a/gdata/gdata-commentable.c
+++ b/gdata/gdata-commentable.c
@@ -89,7 +89,7 @@
  * 	</programlisting>
  * </example>
  *
- * Since: 0.9.2
+ * Since: 0.10.0
  */
 
 #include <config.h>
@@ -141,7 +141,7 @@ get_comment_type (GDataCommentableInterface *iface)
  *
  * Return value: (transfer full) (allow-none): a #GDataFeed of #GDataComment<!-- -->s, or %NULL; unref with g_object_unref()
  *
- * Since: 0.9.2
+ * Since: 0.10.0
  */
 GDataFeed *
 gdata_commentable_query_comments (GDataCommentable *self, GDataService *service, GDataQuery *query,
@@ -227,7 +227,7 @@ query_comments_async_cb (GDataService *service, GAsyncResult *service_result, GS
  * When the operation is finished, @callback will be called. You can then call gdata_commentable_query_comments_finish() to get the results of the
  * operation.
  *
- * Since: 0.9.2
+ * Since: 0.10.0
  */
 void
 gdata_commentable_query_comments_async (GDataCommentable *self, GDataService *service, GDataQuery *query, GCancellable *cancellable,
@@ -286,7 +286,7 @@ gdata_commentable_query_comments_async (GDataCommentable *self, GDataService *se
  *
  * Return value: (transfer full) (allow-none): a #GDataFeed of #GDataComment<!-- -->s, or %NULL; unref with g_object_unref()
  *
- * Since: 0.9.2
+ * Since: 0.10.0
  */
 GDataFeed *
 gdata_commentable_query_comments_finish (GDataCommentable *self, GAsyncResult *result, GError **error)
@@ -319,7 +319,7 @@ gdata_commentable_query_comments_finish (GDataCommentable *self, GAsyncResult *r
  *
  * Return value: (transfer full) (allow-none): the added #GDataComment, or %NULL; unref with g_object_unref()
  *
- * Since: 0.9.2
+ * Since: 0.10.0
  */
 GDataComment *
 gdata_commentable_insert_comment (GDataCommentable *self, GDataService *service, GDataComment *comment_, GCancellable *cancellable, GError **error)
@@ -400,7 +400,7 @@ insert_comment_async_cb (GDataService *service, GAsyncResult *service_result, GS
  * When the operation is finished, @callback will be called. You can then call gdata_commentable_insert_comment_finish() to get the results of the
  * operation.
  *
- * Since: 0.9.2
+ * Since: 0.10.0
  */
 void
 gdata_commentable_insert_comment_async (GDataCommentable *self, GDataService *service, GDataComment *comment_, GCancellable *cancellable,
@@ -460,7 +460,7 @@ gdata_commentable_insert_comment_async (GDataCommentable *self, GDataService *se
  *
  * Return value: (transfer full) (allow-none): the added #GDataComment, or %NULL; unref with g_object_unref()
  *
- * Since: 0.9.2
+ * Since: 0.10.0
  */
 GDataComment *
 gdata_commentable_insert_comment_finish (GDataCommentable *self, GAsyncResult *result, GError **error)
@@ -494,7 +494,7 @@ gdata_commentable_insert_comment_finish (GDataCommentable *self, GAsyncResult *r
  *
  * Return value: %TRUE if the comment was successfully deleted, %FALSE otherwise
  *
- * Since: 0.9.2
+ * Since: 0.10.0
  */
 gboolean
 gdata_commentable_delete_comment (GDataCommentable *self, GDataService *service, GDataComment *comment_, GCancellable *cancellable, GError **error)
@@ -565,7 +565,7 @@ delete_comment_async_cb (GDataService *service, GAsyncResult *service_result, GS
  * When the operation is finished, @callback will be called. You can then call gdata_commentable_delete_comment_finish() to get the results of the
  * operation.
  *
- * Since: 0.9.2
+ * Since: 0.10.0
  */
 void
 gdata_commentable_delete_comment_async (GDataCommentable *self, GDataService *service, GDataComment *comment_, GCancellable *cancellable,
@@ -616,7 +616,7 @@ gdata_commentable_delete_comment_async (GDataCommentable *self, GDataService *se
  *
  * Return value: %TRUE if the comment was successfully deleted, %FALSE otherwise
  *
- * Since: 0.9.2
+ * Since: 0.10.0
  */
 gboolean
 gdata_commentable_delete_comment_finish (GDataCommentable *self, GAsyncResult *result, GError **error)
diff --git a/gdata/gdata-commentable.h b/gdata/gdata-commentable.h
index 70b3776..9c968dc 100644
--- a/gdata/gdata-commentable.h
+++ b/gdata/gdata-commentable.h
@@ -39,7 +39,7 @@
  *
  * All the fields in the #GDataCommentable structure are private and should never be accessed directly
  *
- * Since: 0.9.2
+ * Since: 0.10.0
  */
 typedef struct _GDataCommentable		GDataCommentable; /* dummy typedef */
 
@@ -58,7 +58,7 @@ typedef struct _GDataCommentable		GDataCommentable; /* dummy typedef */
  *
  * The interface structure for the #GDataCommentable interface.
  *
- * Since: 0.9.2
+ * Since: 0.10.0
  */
 typedef struct {
 	GTypeInterface parent;
diff --git a/gdata/gdata-entry.c b/gdata/gdata-entry.c
index 7ae9702..4f16b06 100644
--- a/gdata/gdata-entry.c
+++ b/gdata/gdata-entry.c
@@ -940,7 +940,7 @@ gdata_entry_add_link (GDataEntry *self, GDataLink *_link)
  *
  * Return value: %TRUE if @_link was found in the #GDataEntry and removed, %FALSE if it was not found
  *
- * Since: 0.9.2
+ * Since: 0.10.0
  */
 gboolean
 gdata_entry_remove_link (GDataEntry *self, GDataLink *_link)
diff --git a/gdata/services/picasaweb/gdata-picasaweb-comment.c b/gdata/services/picasaweb/gdata-picasaweb-comment.c
index bae1a39..c1449ae 100644
--- a/gdata/services/picasaweb/gdata-picasaweb-comment.c
+++ b/gdata/services/picasaweb/gdata-picasaweb-comment.c
@@ -28,7 +28,7 @@
  *
  * It's possible to query for, add and delete #GDataPicasaWebComment<!-- -->s from #GDataPicasaWebFile<!-- -->s.
  *
- * Since: 0.9.2
+ * Since: 0.10.0
  */
 
 #include <config.h>
@@ -103,7 +103,7 @@ gdata_picasaweb_comment_set_property (GObject *object, guint property_id, const
  *
  * Return value: a new #GDataPicasaWebComment; unref with g_object_unref()
  *
- * Since: 0.9.2
+ * Since: 0.10.0
  */
 GDataPicasaWebComment *
 gdata_picasaweb_comment_new (const gchar *id)
diff --git a/gdata/services/picasaweb/gdata-picasaweb-comment.h b/gdata/services/picasaweb/gdata-picasaweb-comment.h
index b78c857..cca9c9e 100644
--- a/gdata/services/picasaweb/gdata-picasaweb-comment.h
+++ b/gdata/services/picasaweb/gdata-picasaweb-comment.h
@@ -41,7 +41,7 @@ typedef struct _GDataPicasaWebCommentPrivate	GDataPicasaWebCommentPrivate;
  *
  * All the fields in the #GDataPicasaWebComment structure are private and should never be accessed directly.
  *
- * Since: 0.9.2
+ * Since: 0.10.0
  */
 typedef struct {
 	GDataComment parent;
@@ -53,7 +53,7 @@ typedef struct {
  *
  * All the fields in the #GDataPicasaWebCommentClass structure are private and should never be accessed directly.
  *
- * Since: 0.9.2
+ * Since: 0.10.0
  */
 typedef struct {
 	/*< private >*/
diff --git a/gdata/services/youtube/gdata-youtube-comment.c b/gdata/services/youtube/gdata-youtube-comment.c
index 1cd9cee..7c975fb 100644
--- a/gdata/services/youtube/gdata-youtube-comment.c
+++ b/gdata/services/youtube/gdata-youtube-comment.c
@@ -34,7 +34,7 @@
  * the same video (as retrieved using gdata_entry_look_up_link() on the comments). Comments with #GDataYouTubeComment:parent-comment-uri set to %NULL
  * are top-level comments.
  *
- * Since: 0.9.2
+ * Since: 0.10.0
  */
 
 #include <config.h>
@@ -71,7 +71,7 @@ gdata_youtube_comment_class_init (GDataYouTubeCommentClass *klass)
 	 *
 	 * See the documentation for #GDataYouTubeComment for an explanation of the semantics of parent comment URIs.
 	 *
-	 * Since: 0.9.2.
+	 * Since: 0.10.0
 	 */
 	g_object_class_install_property (gobject_class, PROP_PARENT_COMMENT_URI,
 	                                 g_param_spec_string ("parent-comment-uri",
@@ -126,7 +126,7 @@ gdata_youtube_comment_set_property (GObject *object, guint property_id, const GV
  *
  * Return value: a new #GDataYouTubeComment; unref with g_object_unref()
  *
- * Since: 0.9.2
+ * Since: 0.10.0
  */
 GDataYouTubeComment *
 gdata_youtube_comment_new (const gchar *id)
@@ -144,7 +144,7 @@ gdata_youtube_comment_new (const gchar *id)
  *
  * Return value: the parent comment URI, or %NULL
  *
- * Since: 0.9.2
+ * Since: 0.10.0
  */
 const gchar *
 gdata_youtube_comment_get_parent_comment_uri (GDataYouTubeComment *self)
@@ -174,7 +174,7 @@ gdata_youtube_comment_get_parent_comment_uri (GDataYouTubeComment *self)
  * See the <ulink type="http" url="http://code.google.com/apis/youtube/2.0/developers_guide_protocol_comments.html#Retrieve_comments";>online
  * documentation</ulink> for more information.
  *
- * Since: 0.9.2
+ * Since: 0.10.0
  */
 void
 gdata_youtube_comment_set_parent_comment_uri (GDataYouTubeComment *self, const gchar *parent_comment_uri)
diff --git a/gdata/services/youtube/gdata-youtube-comment.h b/gdata/services/youtube/gdata-youtube-comment.h
index 5b64f80..9a209ab 100644
--- a/gdata/services/youtube/gdata-youtube-comment.h
+++ b/gdata/services/youtube/gdata-youtube-comment.h
@@ -41,7 +41,7 @@ typedef struct _GDataYouTubeCommentPrivate	GDataYouTubeCommentPrivate;
  *
  * All the fields in the #GDataYouTubeComment structure are private and should never be accessed directly.
  *
- * Since: 0.9.2
+ * Since: 0.10.0
  */
 typedef struct {
 	GDataComment parent;
@@ -53,7 +53,7 @@ typedef struct {
  *
  * All the fields in the #GDataYouTubeCommentClass structure are private and should never be accessed directly.
  *
- * Since: 0.9.2
+ * Since: 0.10.0
  */
 typedef struct {
 	/*< private >*/
diff --git a/gdata/services/youtube/gdata-youtube-video.c b/gdata/services/youtube/gdata-youtube-video.c
index 80a1efc..f347ddf 100644
--- a/gdata/services/youtube/gdata-youtube-video.c
+++ b/gdata/services/youtube/gdata-youtube-video.c
@@ -1252,7 +1252,7 @@ gdata_youtube_video_is_restricted_in_country (GDataYouTubeVideo *self, const gch
  *
  * Return value: the rating of the video for the given @rating_type, or %NULL if the video isn't rated with that type (or the type is unknown)
  *
- * Since: 0.9.2
+ * Since: 0.10.0
  */
 const gchar *
 gdata_youtube_video_get_media_rating (GDataYouTubeVideo *self, const gchar *rating_type)
diff --git a/gdata/services/youtube/gdata-youtube-video.h b/gdata/services/youtube/gdata-youtube-video.h
index 93b80c2..490730d 100644
--- a/gdata/services/youtube/gdata-youtube-video.h
+++ b/gdata/services/youtube/gdata-youtube-video.h
@@ -103,7 +103,7 @@ G_BEGIN_DECLS
  * A rating type to pass to gdata_youtube_video_get_media_rating() for âsimpleâ ratings. The values which can be returned for such ratings are:
  * <code class="literal">adult</code> and <code class="literal">nonadult</code>.
  *
- * Since: 0.9.2
+ * Since: 0.10.0
  */
 #define GDATA_YOUTUBE_RATING_TYPE_SIMPLE "simple"
 
@@ -114,7 +114,7 @@ G_BEGIN_DECLS
  * values which can be returned for such ratings are: <code class="literal">g</code>, <code class="literal">pg</code>,
  * <code class="literal">pg-13</code>, <code class="literal">r</code> and <code class="literal">nc-17</code>.
  *
- * Since: 0.9.2
+ * Since: 0.10.0
  */
 #define GDATA_YOUTUBE_RATING_TYPE_MPAA "mpaa"
 
@@ -126,7 +126,7 @@ G_BEGIN_DECLS
  * <code class="literal">tv-y</code>, <code class="literal">tv-y7</code>, <code class="literal">tv-y7-fv</code>, <code class="literal">tv-g</code>,
  * <code class="literal">tv-pg</code>, <code class="literal">tv-14</code> and <code class="literal">tv-ma</code>.
  *
- * Since: 0.9.2
+ * Since: 0.10.0
  */
 #define GDATA_YOUTUBE_RATING_TYPE_V_CHIP "v-chip"
 
diff --git a/gdata/tests/common.h b/gdata/tests/common.h
index 9b55db7..7f16ee2 100644
--- a/gdata/tests/common.h
+++ b/gdata/tests/common.h
@@ -92,7 +92,7 @@ typedef struct {
  * the #GDataAsyncTestData.test_data pointer). These functions will be named <function>set_up_<replaceable>CLOSURE_NAME</replaceable>_async</function>
  * and <function>tear_down_<replaceable>CLOSURE_NAME</replaceable>_async</function>.
  *
- * Since: 0.9.2
+ * Since: 0.10.0
  */
 #define GDATA_ASYNC_CLOSURE_FUNCTIONS(CLOSURE_NAME, TestStructType) \
 static void \
@@ -117,7 +117,7 @@ tear_down_##CLOSURE_NAME##_async (GDataAsyncTestData *async_data, gconstpointer
  * The initial timeout for cancellation tests, which will be the first timeout used after testing cancelling the operation before it's started.
  * The value is in milliseconds.
  *
- * Since: 0.9.2
+ * Since: 0.10.0
  */
 #define GDATA_ASYNC_STARTING_TIMEOUT 20 /* ms */
 
@@ -126,7 +126,7 @@ tear_down_##CLOSURE_NAME##_async (GDataAsyncTestData *async_data, gconstpointer
  *
  * The factor by which the asynchronous cancellation timeout will be multiplied between iterations of the cancellation test.
  *
- * Since: 0.9.2
+ * Since: 0.10.0
  */
 #define GDATA_ASYNC_TIMEOUT_MULTIPLIER 3
 
@@ -137,7 +137,7 @@ tear_down_##CLOSURE_NAME##_async (GDataAsyncTestData *async_data, gconstpointer
  * operation test will fail.
  * The value is in milliseconds.
  *
- * Since: 0.9.2
+ * Since: 0.10.0
  */
 #define GDATA_ASYNC_MAXIMUM_TIMEOUT 43740 /* ms */
 
@@ -164,7 +164,7 @@ tear_down_##CLOSURE_NAME##_async (GDataAsyncTestData *async_data, gconstpointer
  * <function>test_<replaceable>TEST_NAME</replaceable>_async</function> and
  * <function>test_<replaceable>TEST_NAME</replaceable>_async_cancellation</function>.
  *
- * Since: 0.9.2
+ * Since: 0.10.0
  */
 #define GDATA_ASYNC_TEST_FUNCTIONS(TEST_NAME, TestStructType, TEST_BEGIN_CODE, TEST_END_CODE) \
 static void \



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