diff options
author | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2010-03-24 18:35:29 +0000 |
---|---|---|
committer | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2010-03-24 18:35:29 +0000 |
commit | 27a49b251dd81d7eacc3c88eb96ec9619547d383 (patch) | |
tree | 47cc987dc173a50712080ea2ac557eab961c17f4 | |
parent | 1212b5585154495ce93868270d8f1ccf7ee164c3 (diff) |
Prepare version 0.10.1telepathy-glib-0.10.1
Also remove some NEWS items that were already fixed during 0.9.x
-rw-r--r-- | NEWS | 27 | ||||
-rw-r--r-- | configure.ac | 6 |
2 files changed, 8 insertions, 25 deletions
@@ -1,7 +1,10 @@ -telepathy-glib 0.10.1 (UNRELEASED) +telepathy-glib 0.10.1 (2010-03-24) ================================== -... +The "usually quite loud" release. + +This version includes all the bugfixes from 0.8.2, plus some documentation +improvements in code added since 0.8. Fixes: @@ -21,26 +24,6 @@ Fixes: * Remove a misleading debug message from tp_list_connection_names (wjt) -* fd.o #23853: if a connection manager is discovered not to be running while - TpConnectionManager has a ListProtocols call in-flight, then a new instance - of the CM starts up and replies to that call, don't crash with an assertion - failure (smcv) - -* If a connection manager returns error from GetParameters(), don't dereference - a NULL pointer and segfault (smcv) - -* When asked to activate or introspect a connection manager, don't do anything - until we have at least worked out whether it was initially running, in order - to provide the documented behaviour (smcv) - -* When getting parameter details from a running connection manager, consider - parameters called "password" or ending with "-password" to be secret even - if they lack the SECRET flag, as was already done when reading .manager - files (smcv) - -* Corrected the error message given when a write-only D-Bus property - is read (Pekka Pessi) - telepathy-glib 0.10.0 (2010-01-21) ================================== diff --git a/configure.ac b/configure.ac index e0a1248f1..a456ca6b5 100644 --- a/configure.ac +++ b/configure.ac @@ -11,14 +11,14 @@ AC_PREREQ([2.59]) m4_define([tp_glib_major_version], [0]) m4_define([tp_glib_minor_version], [10]) -m4_define([tp_glib_micro_version], [0]) -m4_define([tp_glib_nano_version], [1]) +m4_define([tp_glib_micro_version], [1]) +m4_define([tp_glib_nano_version], [0]) # If library source has changed since last release, increment revision. # Do not add new API or ABI, or make incompatible changes, on this branch # (which means that current and age should remain 32). m4_define([tp_glib_lt_current], [32]) -m4_define([tp_glib_lt_revision], [1]) +m4_define([tp_glib_lt_revision], [2]) m4_define([tp_glib_lt_age], [32]) # Some magic |