summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2010-03-31 19:31:31 +0100
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2010-03-31 19:31:31 +0100
commit0f30d828c6dc0e64dd78fd332ba94b4c9a719850 (patch)
tree70db75a8f46393300d1984bfa65c65d9d09296b6
parent8c970d8e846ce928d92ae7dc6d2039f0e21b983c (diff)
Prepare version 0.11.0telepathy-glib-0.11.0
Now with extra Unicode ☺
-rw-r--r--NEWS38
-rw-r--r--configure.ac12
-rw-r--r--telepathy-glib/Makefile.am3
-rw-r--r--telepathy-glib/channel.c2
-rw-r--r--telepathy-glib/connection.c2
-rw-r--r--telepathy-glib/dbus.c2
-rw-r--r--telepathy-glib/util.c4
-rw-r--r--telepathy-glib/versions/0.11.0.abi13
8 files changed, 47 insertions, 29 deletions
diff --git a/NEWS b/NEWS
index e8c748cc..fce04019 100644
--- a/NEWS
+++ b/NEWS
@@ -1,49 +1,53 @@
-telepathy-glib 0.11.0 (UNRELEASED)
+telepathy-glib 0.11.0 (2010-03-31)
==================================
+The ‘bah, you removed my “beautiful” quotes’ release.
+
Dependencies:
-* GLib, GObject and GIO ≥ 2.22 are now required
+‣ GLib, GObject and GIO ≥ 2.22 are now required
Deprecations:
-* fd.o #22206: all the re-entrant functions (of the form tp_FOO_run_until_ready
+‣ fd.o #22206: all the re-entrant functions (of the form tp_FOO_run_until_ready
and tp_cli_FOO_run_BAR) are deprecated in this version, please use
asynchronous calls instead (smcv)
-* fd.o #24114: tp_get_bus() is deprecated, please use tp_dbus_daemon_dup()
+‣ fd.o #24114: tp_get_bus() is deprecated, please use tp_dbus_daemon_dup()
followed by tp_proxy_get_dbus_connection() (smcv)
Enhancements:
-* Update to telepathy-spec 0.19.3 (smcv)
- - generate code for Connection.Interface.Balance
+‣ Update to telepathy-spec 0.19.3 (smcv)
+ ❧ generate code for new Connection.Interfaces, Connection.Status properties,
+ and implement them in TpBaseConnection
+ ❧ generate code for Connection.Interface.Balance
-* Add an example connection manager for the experimental Call API that will
+‣ Add an example connection manager for the experimental Call API that will
eventually replace StreamedMedia (smcv)
-* Add tp_g_socket_address_from_variant,
+‣ Add tp_g_socket_address_from_variant,
tp_address_variant_from_g_socket_address (danni)
-* Add tp_g_value_slice_new_byte (smcv)
+‣ Add tp_g_value_slice_new_byte (smcv)
-* Add tp_value_array_unpack, the inverse of tp_value_array_build (danni)
+‣ Add tp_value_array_unpack, the inverse of tp_value_array_build (danni)
-* Make various minor improvements to the tests (smcv)
+‣ Make various minor improvements to the tests (smcv)
Fixes:
-* tp_account_set_nickname_async: set the right source_tag (cassidy)
+‣ tp_account_set_nickname_async: set the right source_tag (cassidy)
-* fd.o #27281: clarify documentation for tp_message_mixin_sent, using
+‣ fd.o #27281: clarify documentation for tp_message_mixin_sent, using
telepathy-spec 0.19.2 as a reference (Maiku)
-* Avoid using re-entrant functions, other than in regression tests (smcv)
+‣ Avoid using re-entrant functions, other than in regression tests (smcv)
-* fd.o #21956: clean up documentation/defaults of TpContact properties (smcv)
+‣ fd.o #21956: clean up documentation/defaults of TpContact properties (smcv)
-* telepathy.am: if copied into a project where CHECK_FOR_UNRELEASED is empty,
- don't hang waiting for input (smcv)
+‣ telepathy.am: if copied into a project where nothing is checked for
+ unreleased version annotations, don't hang waiting for input (smcv)
telepathy-glib 0.10.2 (2010-03-31)
==================================
diff --git a/configure.ac b/configure.ac
index 5c20e429..3f7a9e20 100644
--- a/configure.ac
+++ b/configure.ac
@@ -10,9 +10,9 @@ AC_PREREQ([2.59])
# set nano_version to 1
m4_define([tp_glib_major_version], [0])
-m4_define([tp_glib_minor_version], [10])
-m4_define([tp_glib_micro_version], [999])
-m4_define([tp_glib_nano_version], [1])
+m4_define([tp_glib_minor_version], [11])
+m4_define([tp_glib_micro_version], [0])
+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,
@@ -26,9 +26,9 @@ m4_define([tp_glib_nano_version], [1])
# (we don't guarantee that we won't add ABI then remove it again, if it was
# never seen in a release).
-m4_define([tp_glib_lt_current], [32])
-m4_define([tp_glib_lt_revision], [3])
-m4_define([tp_glib_lt_age], [32])
+m4_define([tp_glib_lt_current], [33])
+m4_define([tp_glib_lt_revision], [0])
+m4_define([tp_glib_lt_age], [33])
# Some magic
m4_define([tp_glib_base_version],
diff --git a/telepathy-glib/Makefile.am b/telepathy-glib/Makefile.am
index cccd8ccb..55455c8f 100644
--- a/telepathy-glib/Makefile.am
+++ b/telepathy-glib/Makefile.am
@@ -41,7 +41,8 @@ ABI_LISTS = \
versions/0.7.36.abi \
versions/0.7.37.abi \
versions/0.9.0.abi \
- versions/0.9.2.abi
+ versions/0.9.2.abi \
+ versions/0.11.0.abi
EXTRA_DIST = \
$(ABI_LISTS) \
diff --git a/telepathy-glib/channel.c b/telepathy-glib/channel.c
index 55d2f3aa..00c08027 100644
--- a/telepathy-glib/channel.c
+++ b/telepathy-glib/channel.c
@@ -1502,7 +1502,7 @@ finally:
* %FALSE if the channel has become invalid.
*
* Since: 0.7.1
- * Deprecated: since 0.9.UNRELEASED. Use tp_connection_call_when_ready,
+ * Deprecated: 0.11.0: Use tp_connection_call_when_ready,
* or restructure your program in such a way as to avoid re-entering the
* main loop.
*/
diff --git a/telepathy-glib/connection.c b/telepathy-glib/connection.c
index bf647eec..511e696c 100644
--- a/telepathy-glib/connection.c
+++ b/telepathy-glib/connection.c
@@ -905,7 +905,7 @@ tp_connection_get_status (TpConnection *self,
* %FALSE if the connection has become invalid.
*
* Since: 0.7.1
- * Deprecated: since 0.9.UNRELEASED. Use tp_connection_call_when_ready,
+ * Deprecated: 0.11.0: Use tp_connection_call_when_ready,
* or restructure your program in such a way as to avoid re-entering the
* main loop.
*/
diff --git a/telepathy-glib/dbus.c b/telepathy-glib/dbus.c
index 17b8ab12..a5185a64 100644
--- a/telepathy-glib/dbus.c
+++ b/telepathy-glib/dbus.c
@@ -122,7 +122,7 @@ _tp_dbus_starter_bus_conn (GError **error)
*
* Returns: a connection to the starter or session D-Bus daemon.
*
- * Deprecated: 0.11.UNRELEASED: Use tp_dbus_daemon_dup() in new code.
+ * Deprecated: 0.11.0: Use tp_dbus_daemon_dup() in new code.
*/
DBusGConnection *
tp_get_bus (void)
diff --git a/telepathy-glib/util.c b/telepathy-glib/util.c
index 66058ae0..37930abf 100644
--- a/telepathy-glib/util.c
+++ b/telepathy-glib/util.c
@@ -204,7 +204,7 @@ tp_g_value_slice_new_int64 (gint64 n)
* Returns: a #GValue of type %G_TYPE_UCHAR with value @n, to be freed with
* tp_g_value_slice_free() or g_slice_free()
*
- * Since: 0.11.UNRELEASED
+ * Since: 0.11.0
*/
GValue *
tp_g_value_slice_new_byte (guchar n)
@@ -1083,7 +1083,7 @@ tp_value_array_build (gsize length,
* </programlisting>
* </example>
*
- * Since: UNRELEASED
+ * Since: 0.11.0
*/
void
tp_value_array_unpack (GValueArray *array,
diff --git a/telepathy-glib/versions/0.11.0.abi b/telepathy-glib/versions/0.11.0.abi
new file mode 100644
index 00000000..117d3e4c
--- /dev/null
+++ b/telepathy-glib/versions/0.11.0.abi
@@ -0,0 +1,13 @@
+Version: TELEPATHY_GLIB_0.11.0
+Extends: TELEPATHY_GLIB_0.9.2
+Release: 0.11.0
+
+tp_address_variant_from_g_socket_address
+tp_cli_connection_interface_balance_connect_to_balance_changed
+tp_g_socket_address_from_variant
+tp_g_value_slice_new_byte
+tp_iface_quark_connection_interface_balance
+tp_svc_connection_interface_balance_emit_balance_changed
+tp_svc_connection_interface_balance_get_type
+tp_type_dbus_struct_ius
+tp_value_array_unpack