summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2014-03-19 19:10:54 +0000
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2014-03-19 19:10:54 +0000
commitf4b95b9fcf752821476901a9a902b9472ccc8200 (patch)
treeeae46de6d4452117935bbbbc1680d4b6fae451aa
parent16004c6dad3523aa10cc64bdb29796a2c0c87094 (diff)
-rw-r--r--NEWS4
-rw-r--r--configure.ac4
-rw-r--r--telepathy-glib/base-client.c12
-rw-r--r--telepathy-glib/base-client.h12
-rw-r--r--telepathy-glib/channel-filter.h26
-rw-r--r--telepathy-glib/client-factory.c16
-rw-r--r--telepathy-glib/client-factory.h16
-rw-r--r--telepathy-glib/extra-gtkdoc.h2
-rw-r--r--telepathy-glib/logger.c6
-rw-r--r--telepathy-glib/protocol.c4
-rw-r--r--telepathy-glib/variant-util.c2
11 files changed, 53 insertions, 51 deletions
diff --git a/NEWS b/NEWS
index f61a8a2ed..c8cb394ee 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,8 @@
-telepathy-glib 0.99.8 (UNRELEASED)
+telepathy-glib 0.99.8 (2013-03-19)
==================================
+The “like spinning plates” release.
+
Dependencies:
• GLib ≥ 2.39.90
diff --git a/configure.ac b/configure.ac
index 85c901803..67bdeac02 100644
--- a/configure.ac
+++ b/configure.ac
@@ -15,8 +15,8 @@ AC_COPYRIGHT([
m4_define([tp_glib_major_version], [0])
m4_define([tp_glib_minor_version], [99])
-m4_define([tp_glib_micro_version], [7])
-m4_define([tp_glib_nano_version], [1])
+m4_define([tp_glib_micro_version], [8])
+m4_define([tp_glib_nano_version], [0])
# If library source has changed since last release, increment revision
# If interfaces have been added, removed or changed since last release,
diff --git a/telepathy-glib/base-client.c b/telepathy-glib/base-client.c
index c400b2c8d..3eca973dc 100644
--- a/telepathy-glib/base-client.c
+++ b/telepathy-glib/base-client.c
@@ -351,7 +351,7 @@ tp_base_client_dup_account (TpBaseClient *self,
* called, and may only be called on objects whose class implements
* #TpBaseClientClass.observe_channel.
*
- * Since: 0.UNRELEASED
+ * Since: 0.99.8
*/
void
tp_base_client_add_observer_filter (TpBaseClient *self,
@@ -375,7 +375,7 @@ tp_base_client_add_observer_filter (TpBaseClient *self,
* tp_channel_filter_new_for_text_chats ());
* ]|
*
- * Since: 0.UNRELEASED
+ * Since: 0.99.8
*/
void
tp_base_client_take_observer_filter (TpBaseClient *self,
@@ -532,7 +532,7 @@ tp_base_client_set_observer_delay_approvers (TpBaseClient *self,
* called, and may only be called on objects whose class implements
* #TpBaseClientClass.add_dispatch_operation.
*
- * Since: 0.UNRELEASED
+ * Since: 0.99.8
*/
void
tp_base_client_add_approver_filter (TpBaseClient *self,
@@ -556,7 +556,7 @@ tp_base_client_add_approver_filter (TpBaseClient *self,
* tp_channel_filter_new_for_text_chats ());
* ]|
*
- * Since: 0.UNRELEASED
+ * Since: 0.99.8
*/
void
tp_base_client_take_approver_filter (TpBaseClient *self,
@@ -646,7 +646,7 @@ tp_base_client_be_a_handler (TpBaseClient *self)
* called, and may only be called on objects whose class implements
* #TpBaseClientClass.handle_channel.
*
- * Since: 0.UNRELEASED
+ * Since: 0.99.8
*/
void
tp_base_client_add_handler_filter (TpBaseClient *self,
@@ -706,7 +706,7 @@ tp_base_client_add_handler_filter_variant (TpBaseClient *self,
* tp_channel_filter_new_for_text_chats ());
* ]|
*
- * Since: 0.UNRELEASED
+ * Since: 0.99.8
*/
void
tp_base_client_take_handler_filter (TpBaseClient *self,
diff --git a/telepathy-glib/base-client.h b/telepathy-glib/base-client.h
index ba43a1b30..e3d3da749 100644
--- a/telepathy-glib/base-client.h
+++ b/telepathy-glib/base-client.h
@@ -113,10 +113,10 @@ _TP_AVAILABLE_IN_0_20
void tp_base_client_add_observer_filter_variant (TpBaseClient *self,
GVariant *filter);
-_TP_AVAILABLE_IN_UNRELEASED
+_TP_AVAILABLE_IN_1_0
void tp_base_client_add_observer_filter (TpBaseClient *self,
TpChannelFilter *filter);
-_TP_AVAILABLE_IN_UNRELEASED
+_TP_AVAILABLE_IN_1_0
void tp_base_client_take_observer_filter (TpBaseClient *self,
TpChannelFilter *filter);
@@ -129,10 +129,10 @@ _TP_AVAILABLE_IN_0_20
void tp_base_client_add_approver_filter_variant (TpBaseClient *self,
GVariant *filter);
-_TP_AVAILABLE_IN_UNRELEASED
+_TP_AVAILABLE_IN_1_0
void tp_base_client_add_approver_filter (TpBaseClient *self,
TpChannelFilter *filter);
-_TP_AVAILABLE_IN_UNRELEASED
+_TP_AVAILABLE_IN_1_0
void tp_base_client_take_approver_filter (TpBaseClient *self,
TpChannelFilter *filter);
@@ -142,10 +142,10 @@ _TP_AVAILABLE_IN_0_20
void tp_base_client_add_handler_filter_variant (TpBaseClient *self,
GVariant *filter);
-_TP_AVAILABLE_IN_UNRELEASED
+_TP_AVAILABLE_IN_1_0
void tp_base_client_add_handler_filter (TpBaseClient *self,
TpChannelFilter *filter);
-_TP_AVAILABLE_IN_UNRELEASED
+_TP_AVAILABLE_IN_1_0
void tp_base_client_take_handler_filter (TpBaseClient *self,
TpChannelFilter *filter);
diff --git a/telepathy-glib/channel-filter.h b/telepathy-glib/channel-filter.h
index ae467acc3..7a4c27f85 100644
--- a/telepathy-glib/channel-filter.h
+++ b/telepathy-glib/channel-filter.h
@@ -52,46 +52,46 @@ GType tp_channel_filter_get_type (void);
(G_TYPE_INSTANCE_GET_CLASS ((obj), TP_TYPE_CHANNEL_FILTER, \
TpChannelFilterClass))
-_TP_AVAILABLE_IN_UNRELEASED G_GNUC_WARN_UNUSED_RESULT
+_TP_AVAILABLE_IN_1_0 G_GNUC_WARN_UNUSED_RESULT
TpChannelFilter *tp_channel_filter_new_for_all_types (void);
-_TP_AVAILABLE_IN_UNRELEASED G_GNUC_WARN_UNUSED_RESULT
+_TP_AVAILABLE_IN_1_0 G_GNUC_WARN_UNUSED_RESULT
TpChannelFilter *tp_channel_filter_new_for_text_chats (void);
-_TP_AVAILABLE_IN_UNRELEASED G_GNUC_WARN_UNUSED_RESULT
+_TP_AVAILABLE_IN_1_0 G_GNUC_WARN_UNUSED_RESULT
TpChannelFilter *tp_channel_filter_new_for_text_chatrooms (void);
-_TP_AVAILABLE_IN_UNRELEASED G_GNUC_WARN_UNUSED_RESULT
+_TP_AVAILABLE_IN_1_0 G_GNUC_WARN_UNUSED_RESULT
TpChannelFilter *tp_channel_filter_new_for_calls (TpEntityType entity_type);
-_TP_AVAILABLE_IN_UNRELEASED G_GNUC_WARN_UNUSED_RESULT
+_TP_AVAILABLE_IN_1_0 G_GNUC_WARN_UNUSED_RESULT
TpChannelFilter *tp_channel_filter_new_for_stream_tubes (const gchar *service);
-_TP_AVAILABLE_IN_UNRELEASED G_GNUC_WARN_UNUSED_RESULT
+_TP_AVAILABLE_IN_1_0 G_GNUC_WARN_UNUSED_RESULT
TpChannelFilter *tp_channel_filter_new_for_dbus_tubes (const gchar *service);
-_TP_AVAILABLE_IN_UNRELEASED G_GNUC_WARN_UNUSED_RESULT
+_TP_AVAILABLE_IN_1_0 G_GNUC_WARN_UNUSED_RESULT
TpChannelFilter *tp_channel_filter_new_for_file_transfers (
const gchar *service);
-_TP_AVAILABLE_IN_UNRELEASED
+_TP_AVAILABLE_IN_1_0
void tp_channel_filter_require_target_is_contact (TpChannelFilter *self);
-_TP_AVAILABLE_IN_UNRELEASED
+_TP_AVAILABLE_IN_1_0
void tp_channel_filter_require_target_is_room (TpChannelFilter *self);
-_TP_AVAILABLE_IN_UNRELEASED
+_TP_AVAILABLE_IN_1_0
void tp_channel_filter_require_no_target (TpChannelFilter *self);
-_TP_AVAILABLE_IN_UNRELEASED
+_TP_AVAILABLE_IN_1_0
void tp_channel_filter_require_target_type (TpChannelFilter *self,
TpEntityType entity_type);
-_TP_AVAILABLE_IN_UNRELEASED
+_TP_AVAILABLE_IN_1_0
void tp_channel_filter_require_locally_requested (TpChannelFilter *self,
gboolean requested);
-_TP_AVAILABLE_IN_UNRELEASED
+_TP_AVAILABLE_IN_1_0
void tp_channel_filter_require_property (TpChannelFilter *self,
const gchar *name,
GVariant *value);
diff --git a/telepathy-glib/client-factory.c b/telepathy-glib/client-factory.c
index 32de72cca..f0987b09b 100644
--- a/telepathy-glib/client-factory.c
+++ b/telepathy-glib/client-factory.c
@@ -1376,7 +1376,7 @@ protocol_destroyed_cb (gpointer data,
* Returns: (transfer full): a reference to a #TpProtocol,
* or %NULL on invalid arguments
*
- * Since: UNRELEASED
+ * Since: 0.99.8
*/
TpProtocol *
tp_client_factory_ensure_protocol (TpClientFactory *self,
@@ -1431,7 +1431,7 @@ tp_client_factory_ensure_protocol (TpClientFactory *self,
* Returns: (transfer full) (element-type GLib.Quark): a newly allocated
* #GArray
*
- * Since: UNRELEASED
+ * Since: 0.99.8
*/
GArray *
tp_client_factory_dup_protocol_features (TpClientFactory *self,
@@ -1462,7 +1462,7 @@ tp_client_factory_dup_protocol_features (TpClientFactory *self,
* Note that these features will not be added to existing #TpProtocol
* objects; the user must call tp_proxy_prepare_async() themself.
*
- * Since: UNRELEASED
+ * Since: 0.99.8
*/
void
tp_client_factory_add_protocol_features (
@@ -1483,7 +1483,7 @@ tp_client_factory_add_protocol_features (
* The same as tp_client_factory_add_protocol_features(), but with a
* more convenient calling convention from C.
*
- * Since: UNRELEASED
+ * Since: 0.99.8
*/
void
tp_client_factory_add_protocol_features_varargs (
@@ -1522,7 +1522,7 @@ tp_client_factory_add_protocol_features_varargs (
* Returns: (transfer full): a reference to a #TpTLSCertificate,
* or %NULL on invalid arguments
*
- * Since: UNRELEASED
+ * Since: 0.99.8
*/
TpTLSCertificate *
tp_client_factory_ensure_tls_certificate (TpClientFactory *self,
@@ -1560,7 +1560,7 @@ tp_client_factory_ensure_tls_certificate (TpClientFactory *self,
* Returns: (transfer full) (element-type GLib.Quark): a newly allocated
* #GArray
*
- * Since: UNRELEASED
+ * Since: 0.99.8
*/
GArray *
tp_client_factory_dup_tls_certificate_features (TpClientFactory *self,
@@ -1591,7 +1591,7 @@ tp_client_factory_dup_tls_certificate_features (TpClientFactory *self,
* Note that these features will not be added to existing #TpTLSCertificate
* objects; the user must call tp_proxy_prepare_async() themself.
*
- * Since: UNRELEASED
+ * Since: 0.99.8
*/
void
tp_client_factory_add_tls_certificate_features (TpClientFactory *self,
@@ -1612,7 +1612,7 @@ tp_client_factory_add_tls_certificate_features (TpClientFactory *self,
* The same as tp_client_factory_add_tls_certificate_features(), but with a
* more convenient calling convention from C.
*
- * Since: UNRELEASED
+ * Since: 0.99.8
*/
void
tp_client_factory_add_tls_certificate_features_varargs (
diff --git a/telepathy-glib/client-factory.h b/telepathy-glib/client-factory.h
index 50010978d..38afd5cb7 100644
--- a/telepathy-glib/client-factory.h
+++ b/telepathy-glib/client-factory.h
@@ -203,37 +203,37 @@ void tp_client_factory_add_contact_features_varargs (TpClientFactory *self,
...);
/* TpProtocol */
-_TP_AVAILABLE_IN_UNRELEASED
+_TP_AVAILABLE_IN_1_0
TpProtocol *tp_client_factory_ensure_protocol (TpClientFactory *self,
const gchar *cm_name,
const gchar *protocol_name,
GVariant *immutable_properties,
GError **error);
-_TP_AVAILABLE_IN_UNRELEASED
+_TP_AVAILABLE_IN_1_0
GArray *tp_client_factory_dup_protocol_features (TpClientFactory *self,
TpProtocol *protocol);
-_TP_AVAILABLE_IN_UNRELEASED
+_TP_AVAILABLE_IN_1_0
void tp_client_factory_add_protocol_features (TpClientFactory *self,
const GQuark *features);
-_TP_AVAILABLE_IN_UNRELEASED
+_TP_AVAILABLE_IN_1_0
void tp_client_factory_add_protocol_features_varargs (TpClientFactory *self,
GQuark feature,
...);
/* TpTLSCertificate */
-_TP_AVAILABLE_IN_UNRELEASED
+_TP_AVAILABLE_IN_1_0
TpTLSCertificate *tp_client_factory_ensure_tls_certificate (
TpClientFactory *self,
TpProxy *conn_or_chan,
const gchar *object_path,
GError **error);
-_TP_AVAILABLE_IN_UNRELEASED
+_TP_AVAILABLE_IN_1_0
GArray *tp_client_factory_dup_tls_certificate_features (TpClientFactory *self,
TpTLSCertificate *certificate);
-_TP_AVAILABLE_IN_UNRELEASED
+_TP_AVAILABLE_IN_1_0
void tp_client_factory_add_tls_certificate_features (TpClientFactory *self,
const GQuark *features);
-_TP_AVAILABLE_IN_UNRELEASED
+_TP_AVAILABLE_IN_1_0
void tp_client_factory_add_tls_certificate_features_varargs (
TpClientFactory *self,
GQuark feature,
diff --git a/telepathy-glib/extra-gtkdoc.h b/telepathy-glib/extra-gtkdoc.h
index 39796b9fc..3eb6e0ae8 100644
--- a/telepathy-glib/extra-gtkdoc.h
+++ b/telepathy-glib/extra-gtkdoc.h
@@ -1099,7 +1099,7 @@
* This interface (auto-generated from the Telepathy spec) makes it easier
* to export objects implementing the Telepathy Logger interface.
*
- * Since: UNRELEASED
+ * Since: 0.99.8
*/
/**
diff --git a/telepathy-glib/logger.c b/telepathy-glib/logger.c
index f833af925..070a2148b 100644
--- a/telepathy-glib/logger.c
+++ b/telepathy-glib/logger.c
@@ -43,7 +43,7 @@
*
* Data structure representing a #TpLogger.
*
- * Since: UNRELEASED
+ * Since: 0.99.8
*/
/**
@@ -51,7 +51,7 @@
*
* The class of a #TpLogger.
*
- * Since: UNRELEASED
+ * Since: 0.99.8
*/
G_DEFINE_TYPE (TpLogger, tp_logger, TP_TYPE_PROXY)
@@ -117,7 +117,7 @@ static gpointer logger_singleton = NULL;
* bus, or %NULL if it wasn't possible to get a dbus daemon proxy for
* the appropriate bus
- * Since: UNRELEASED
+ * Since: 0.99.8
*/
TpLogger *
tp_logger_dup (void)
diff --git a/telepathy-glib/protocol.c b/telepathy-glib/protocol.c
index f2c8f6509..8cd41cd18 100644
--- a/telepathy-glib/protocol.c
+++ b/telepathy-glib/protocol.c
@@ -904,7 +904,7 @@ tp_protocol_init (TpProtocol *self)
*
* Returns: a new protocol proxy, or %NULL on invalid arguments
*
- * Since: 0.UNRELEASED
+ * Since: 0.99.8
*/
TpProtocol *
_tp_protocol_new (TpDBusDaemon *dbus,
@@ -2339,7 +2339,7 @@ tp_protocol_dup_presence_statuses (TpProtocol *self)
* Returns: (transfer full): the value of
* #TpProtocol:protocol-properties
*
- * Since: UNRELEASED
+ * Since: 0.99.8
*/
GVariant *
tp_protocol_dup_immutable_properties (TpProtocol *self)
diff --git a/telepathy-glib/variant-util.c b/telepathy-glib/variant-util.c
index 09756c014..2c1a936bb 100644
--- a/telepathy-glib/variant-util.c
+++ b/telepathy-glib/variant-util.c
@@ -626,7 +626,7 @@ IMPLEMENT (uint64)
* Check if @variant contains @key.
*
* Returns: %TRUE, if @variant contains @key, %FALSE otherwise
- * Since: UNRELEASED
+ * Since: 0.99.8
*/
gboolean
tp_vardict_has_key (GVariant *variant,