diff options
author | Vivek Dasmohapatra <vivek@collabora.co.uk> | 2011-02-09 20:18:08 +0000 |
---|---|---|
committer | Vivek Dasmohapatra <vivek@collabora.co.uk> | 2011-02-09 20:18:08 +0000 |
commit | 66cb9dc0a12a792fda34fb2bef9603ec2b7c8196 (patch) | |
tree | 6f95f205b997b3383fdac4ba551dfbe470ec0a8d | |
parent | 35bcbd7c8af383dece746d4aa4e6dc6060a6d742 (diff) |
Version 0.13.13telepathy-glib-0.13.13
-rw-r--r-- | NEWS | 26 | ||||
-rw-r--r-- | configure.ac | 4 | ||||
-rw-r--r-- | telepathy-glib/abi.am | 1 | ||||
-rw-r--r-- | telepathy-glib/account-channel-request.c | 4 | ||||
-rw-r--r-- | telepathy-glib/debug-sender.c | 4 | ||||
-rw-r--r-- | telepathy-glib/versions/0.13.13.abi | 7 |
6 files changed, 31 insertions, 15 deletions
@@ -1,15 +1,23 @@ -telepathy-glib 0.13.13 (UNRELEASED) +telepathy-glib 0.13.13 (2011-02-09) =================================== - _______________________ -< everything’s in ruins > - ----------------------- - \ ^__^ - \ (oo)\_______ - (__)\ )\/\ - ||----w | - || || +The “Duckworth Lewis” release. +Enhancements: + +• Many doc fixes, including: TpBaseClientClass is now included; + INCOMING_MESSAGES is now explained. (wjt) + +• Compiler flags reordered (clang is order-sensitive) to allow + static analysis. (wjt) + +• Account Channel Requests now give you access to the originating + TpChannelRequest. (cassidy) + +• The speculative debug cache may now be disabled at compile time. + tp_debug_sender_add_message_vprintf and + tp_debug_sender_add_message_printf added to allow callers who care + about optimisation to reduce debug overhead. (fledermaus) telepathy-glib 0.13.12 (2011-02-01) =================================== diff --git a/configure.ac b/configure.ac index a2a8f8625..49c8b5c3e 100644 --- a/configure.ac +++ b/configure.ac @@ -11,8 +11,8 @@ AC_PREREQ([2.59]) m4_define([tp_glib_major_version], [0]) m4_define([tp_glib_minor_version], [13]) -m4_define([tp_glib_micro_version], [12]) -m4_define([tp_glib_nano_version], [1]) +m4_define([tp_glib_micro_version], [13]) +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/abi.am b/telepathy-glib/abi.am index 354bf5a9d..ccf1f65e7 100644 --- a/telepathy-glib/abi.am +++ b/telepathy-glib/abi.am @@ -62,6 +62,7 @@ ABI_LISTS = \ versions/0.13.10.abi \ versions/0.13.11.abi \ versions/0.13.12.abi \ + versions/0.13.13.abi \ $(NULL) # The quoting here is unnecessary but harmless, and has the useful side-effect diff --git a/telepathy-glib/account-channel-request.c b/telepathy-glib/account-channel-request.c index 9999d1ec4..1d5992b17 100644 --- a/telepathy-glib/account-channel-request.c +++ b/telepathy-glib/account-channel-request.c @@ -354,7 +354,7 @@ tp_account_channel_request_class_init ( * representing the same ChannelRequest on D-Bus. You have to compare * them using their object paths (tp_proxy_get_object_path()). * - * Since 0.11.UNRELEASED + * Since 0.13.13 */ param_spec = g_param_spec_object ("channel-request", "channel request", "TpChannelRequest", @@ -1220,7 +1220,7 @@ tp_account_channel_request_set_channel_factory (TpAccountChannelRequest *self, * * Returns: the value of #TpAccountChannelRequest:channel-request * - * Since: 0.11.UNRELEASED + * Since: 0.13.13 */ TpChannelRequest * tp_account_channel_request_get_channel_request (TpAccountChannelRequest *self) diff --git a/telepathy-glib/debug-sender.c b/telepathy-glib/debug-sender.c index 10ebfa8d5..ebbcfab2d 100644 --- a/telepathy-glib/debug-sender.c +++ b/telepathy-glib/debug-sender.c @@ -422,7 +422,7 @@ tp_debug_sender_add_message (TpDebugSender *self, * #TpDebugSender:enabled property is set to %TRUE, then a NewDebugMessage * signal will be fired too. * - * Since: UNRELEASED + * Since: 0.13.13 */ void tp_debug_sender_add_message_vprintf (TpDebugSender *self, @@ -466,7 +466,7 @@ tp_debug_sender_add_message_vprintf (TpDebugSender *self, * #TpDebugSender:enabled property is set to %TRUE, then a NewDebugMessage * signal will be fired too. * - * Since: UNRELEASED + * Since: 0.13.13 */ void tp_debug_sender_add_message_printf (TpDebugSender *self, diff --git a/telepathy-glib/versions/0.13.13.abi b/telepathy-glib/versions/0.13.13.abi new file mode 100644 index 000000000..72323ff54 --- /dev/null +++ b/telepathy-glib/versions/0.13.13.abi @@ -0,0 +1,7 @@ +Version: TELEPATHY_GLIB_0.13.13 +Extends: TELEPATHY_GLIB_0.13.12 +Release: 0.13.13 + +tp_debug_sender_add_message_vprintf +tp_debug_sender_add_message_printf +tp_account_channel_request_get_channel_request |