diff options
author | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2010-01-21 12:55:21 +0000 |
---|---|---|
committer | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2010-01-21 12:55:21 +0000 |
commit | 1d1a103cae40903a362e040d7aeb6f713cb3325e (patch) | |
tree | c4b205fd7f1174308b2c523256bf07a0bca4f10d | |
parent | a060fd26fcdbe86834cb82ba7dc8dc1e301d45dd (diff) |
Prepare 0.10.0 stable releasetelepathy-glib-0.10.0
-rw-r--r-- | NEWS | 22 | ||||
-rw-r--r-- | configure.ac | 8 |
2 files changed, 21 insertions, 9 deletions
@@ -1,7 +1,19 @@ -telepathy-glib 0.9.3 (UNRELEASED) -================================= +telepathy-glib 0.10.0 (2010-01-21) +================================== -Enhancements: +The "where did you get your bear?" release. + +This release begins a bugfix-only 0.10.x branch, in which new API/ABI will no +longer be added; 0.11.x development releases will continue to be made from +the master branch. The 0.10.x branch targets the D-Bus API from +telepathy-spec 0.18.0. + +The major enhancement since 0.8.x is that TpAccountManager and TpAccount, +previously simple stub classes, now have high-level API to manipulate +accounts. GLib 2.20 and dbus-glib 0.82 are now required, and telepathy-glib +now links against GIO. + +Enhancements since 0.9.2: * Add compile-time warnings if the results of functions that allocate memory are ignored; for a couple of these functions it's not obvious that a @@ -12,14 +24,14 @@ Enhancements: * Improve lcov.am, syncing with telepathy-gabble (smcv) -Fixes: +Fixes since 0.9.2: * fd.o #23848: when making a release, make the build system check for files that indicate unreleased status; correct a few such comments (wjt) * fd.o #25149: when a TpAccount is invalidated (deleted), signal connection disconnection first (smcv) -) + * Exit the main loop gracefully when CMs are disconnected from the session bus (sjoerd) diff --git a/configure.ac b/configure.ac index 2a9dbd8df..689773a2b 100644 --- a/configure.ac +++ b/configure.ac @@ -10,9 +10,9 @@ AC_PREREQ([2.59]) # set nano_version to 1 m4_define([tp_glib_major_version], [0]) -m4_define([tp_glib_minor_version], [9]) -m4_define([tp_glib_micro_version], [2]) -m4_define([tp_glib_nano_version], [1]) +m4_define([tp_glib_minor_version], [10]) +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], [32]) -m4_define([tp_glib_lt_revision], [0]) +m4_define([tp_glib_lt_revision], [1]) m4_define([tp_glib_lt_age], [32]) # Some magic |