diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-11-28 11:28:31 +0100 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-11-28 11:41:44 +0100 |
commit | 01e360d649628e578eaeafd8deb33075d925e2aa (patch) | |
tree | b040494252858deb171461524b7c709db2278e3b | |
parent | 111576f9ba3bdaa1df0ebd81be3601c816c43bb9 (diff) |
Version 0.17.3telepathy-glib-0.17.3
-rw-r--r-- | NEWS | 7 | ||||
-rw-r--r-- | configure.ac | 8 | ||||
-rw-r--r-- | telepathy-glib/abi.am | 1 | ||||
-rw-r--r-- | telepathy-glib/connection-aliasing.c | 4 | ||||
-rw-r--r-- | telepathy-glib/versions/0.17.3.abi | 6 |
5 files changed, 19 insertions, 7 deletions
@@ -1,4 +1,4 @@ -telepathy-glib 0.17.3 (UNRELEASED) +telepathy-glib 0.17.3 (2011-11-28) ================================== I DON'T ALWAYS @@ -23,6 +23,11 @@ Fixes: • Fix a crash in TpSimplePasswordManager (Mikhail) +Enhancements: + +• Add high level API to check if a connection supports settings aliases + on contacts. (Guillaume) + telepathy-glib 0.17.2 (2011-11-23) ================================== diff --git a/configure.ac b/configure.ac index db9718a42..4b478b88a 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], [17]) -m4_define([tp_glib_micro_version], [2]) -m4_define([tp_glib_nano_version], [1]) +m4_define([tp_glib_micro_version], [3]) +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], [65]) +m4_define([tp_glib_lt_current], [66]) m4_define([tp_glib_lt_revision], [0]) -m4_define([tp_glib_lt_age], [65]) +m4_define([tp_glib_lt_age], [66]) # Some magic m4_define([tp_glib_base_version], diff --git a/telepathy-glib/abi.am b/telepathy-glib/abi.am index 22baa22f1..551c195fe 100644 --- a/telepathy-glib/abi.am +++ b/telepathy-glib/abi.am @@ -80,6 +80,7 @@ ABI_LISTS = \ versions/0.17.0.abi \ versions/0.17.1.abi \ versions/0.17.2.abi \ + versions/0.17.3.abi \ $(NULL) # The quoting here is unnecessary but harmless, and has the useful side-effect diff --git a/telepathy-glib/connection-aliasing.c b/telepathy-glib/connection-aliasing.c index 5a2a5669a..9581f3653 100644 --- a/telepathy-glib/connection-aliasing.c +++ b/telepathy-glib/connection-aliasing.c @@ -40,7 +40,7 @@ * One can ask for a feature to be prepared using the * tp_proxy_prepare_async() function, and waiting for it to callback. * - * Since: 0.UNRELEASED + * Since: 0.17.3 */ GQuark tp_connection_get_feature_quark_aliasing (void) @@ -59,7 +59,7 @@ tp_connection_get_feature_quark_aliasing (void) * Returns: %TRUE if the aliases of contacts on @self * may be changed by the user of the service, not just by the * contacts themselves; %FALSE otherwise. - * Since: 0.UNRELEASED + * Since: 0.17.3 */ gboolean tp_connection_can_set_contact_alias (TpConnection *self) diff --git a/telepathy-glib/versions/0.17.3.abi b/telepathy-glib/versions/0.17.3.abi new file mode 100644 index 000000000..1e0c0daa1 --- /dev/null +++ b/telepathy-glib/versions/0.17.3.abi @@ -0,0 +1,6 @@ +Version: TELEPATHY_GLIB_0.17.3 +Extends: TELEPATHY_GLIB_0.17.2 +Release: 0.17.3 + +tp_connection_can_set_contact_alias +tp_connection_get_feature_quark_aliasing |