diff options
author | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2013-10-02 14:31:44 +0100 |
---|---|---|
committer | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2013-10-02 14:31:44 +0100 |
commit | ab5cef9789cb51cccd44aacbed80494a9379831e (patch) | |
tree | dd86210e76fc14e77437eea99db3f614f9035a74 | |
parent | fcfa0973c74c9d03020b6ea8c42a0362ccff791e (diff) |
0.22.0telepathy-glib-0.22.0
-rw-r--r-- | NEWS | 26 | ||||
-rw-r--r-- | configure.ac | 8 |
2 files changed, 28 insertions, 6 deletions
@@ -1,11 +1,33 @@ -telepathy-glib 0.21.3 (UNRELEASED) +telepathy-glib 0.22.0 (2013-10-02) ================================== -Fixes: +The “don't starve” release. + +This is a new stable branch, recommended for use with GNOME 3.10. + +Fixes since 0.21.2: + +• When an avatar is downloaded, announce the change to the avatar token + immediately; if the avatar changes from A to B while we're still doing the + asynchronous file saving, don't set A as the new avatar when it has been + saved. Regression in 0.21.2. (fd.o #70010, Simon) • Don't crash if the AccountManager returns an incorrect type for the Avatar (fd.o #69849, Simon) +Significant changes since the previous stable branch, 0.20.x: + +• tp_connection_get_self_contact() now returns NULL if the contact's + connection has been invalidated, in order to break a reference cycle + +• Avatars are saved to the cache asynchronously + +• TpBaseConnection implements SelfID, SelfContactChanged according to + telepathy-spec 0.27.2 + +• TpAccount:uri-schemes property, with change notification requiring + Mission Control 5.15+ + telepathy-glib 0.21.2 (2013-09-24) ================================== diff --git a/configure.ac b/configure.ac index d66c8b048..227e30c1e 100644 --- a/configure.ac +++ b/configure.ac @@ -10,9 +10,9 @@ AC_PREREQ([2.60]) # set nano_version to 1 m4_define([tp_glib_major_version], [0]) -m4_define([tp_glib_minor_version], [21]) -m4_define([tp_glib_micro_version], [2]) -m4_define([tp_glib_nano_version], [1]) +m4_define([tp_glib_minor_version], [22]) +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, @@ -27,7 +27,7 @@ m4_define([tp_glib_nano_version], [1]) # never seen in a release). m4_define([tp_glib_lt_current], [80]) -m4_define([tp_glib_lt_revision], [0]) +m4_define([tp_glib_lt_revision], [1]) m4_define([tp_glib_lt_age], [80]) # Some magic |