diff options
-rw-r--r-- | NEWS | 27 | ||||
-rw-r--r-- | configure.ac | 6 |
2 files changed, 26 insertions, 7 deletions
@@ -1,14 +1,33 @@ -telepathy-mission-control 5.5.2 (UNRELEASED) +telepathy-mission-control 5.5.2 (2010-06-16) ============================================ +The "513M accounts.cfg, which seems terribly wrong" release. + +Dependencies: + +* telepathy-glib 0.11.7 is now required + +Enhancements: + +* fd.o #28428: implement the new ConnectionError property from telepathy-spec + 0.19.7, and if an Account's Connection-related property changes, put all + the related properties in the change notification signal to make it easier to + interpret (smcv) + Fixes: +* fd.o #28557: write account parameters to accounts.cfg correctly, rather than + repeatedly escaping backslash, newline, tab etc., which resulted in doubling + the number of backslashes with every write. If this has made your + accounts.cfg so large that deleting accounts via Empathy is difficult, see + https://bugs.freedesktop.org/show_bug.cgi?id=28557 for a workaround. (smcv) + +* fd.o #28390: drastically reduce writes to gnome-keyring when committing + changes to accounts (wjt, smcv) + * fd.o #28118: clear the 'register' parameter when an account connects successfully, fixing in-band XMPP account creation (smcv) -* When building non-release versions, enable the compiler warnings we intended - to enable (smcv) - This version includes the stable-branch bug fixes from 5.4.3. telepathy-mission-control 5.5.1 (2010-06-03) diff --git a/configure.ac b/configure.ac index 2b9ec32a..a0a02a6e 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ dnl Set the version number to e.g. 5.0.beta42 immediately before a release. dnl Set the version number to e.g. 5.0.beta42+ immediately after (this will dnl enable -Werror). -AC_INIT([telepathy-mission-control], [5.5.1+]) +AC_INIT([telepathy-mission-control], [5.5.2]) AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_SRCDIR(Makefile.am) @@ -45,9 +45,9 @@ AC_SUBST([MCP_API_VERSION]) # set revision to 0 # else if library source has changed since last release # increment revision -MCP_LT_CURRENT=0 +MCP_LT_CURRENT=1 MCP_LT_REVISION=0 -MCP_LT_AGE=0 +MCP_LT_AGE=1 AC_SUBST([MCP_LT_CURRENT]) AC_SUBST([MCP_LT_REVISION]) AC_SUBST([MCP_LT_AGE]) |