summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2009-03-05 18:43:56 +0000
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2009-03-05 18:43:56 +0000
commit6ac59411f93c7d84cef64dd60c955038ae4d4e1d (patch)
tree51b8fa09c7daa7c8af6fa50e60e970a451e9df19
parent53557ddbc44c251f5262ba4040f9230205af7d70 (diff)
Prepare release 0.1.1telepathy-qt4-0.1.1
-rw-r--r--NEWS41
-rw-r--r--configure.ac4
2 files changed, 41 insertions, 4 deletions
diff --git a/NEWS b/NEWS
index 866cc9de..db42aadc 100644
--- a/NEWS
+++ b/NEWS
@@ -1,7 +1,44 @@
-telepathy-qt4 0.1.1 (UNRELEASED)
+telepathy-qt4 0.1.1 (2009-03-05)
================================
-...
+The "PresencePublicationAuthorizationRequestRejection" release.
+
+API changes:
+
+* PendingReadyAccount, PendingReadyAccountManager, PendingReadyConnection,
+ PendingReadyConnectionManager have all been replaced by the PendingReady
+ class
+
+* Account, AccountManager, Connection and ConnectionManager features are now
+ QSet<uint>, not bitfields
+
+* Plural contacts are generally represented by a QSet<QSharedPointer<Contact> >
+ instead of a QList<QSharedPointer<Contact> > (with a new typedef,
+ Telepathy::Client::Contacts, which must be used in signal/slot connections)
+
+Enhancements:
+
+* Added Connection::FeatureRoster, which, when enabled, adds contact list
+ (a.k.a. roster/buddy list) functionality to the ContactManager and
+ Contact objects
+
+* Improved maintainability of Account, AccountManager, Connection and
+ ConnectionManager becoming ready
+
+* A QSharedPointer<Contact> is now hashable with qHash, meaning contacts can
+ be QSet or QHash members
+
+* Added a trivial contact list user interface, examples/roster/roster
+
+Fixes:
+
+* The client library no longer attempts to enforce group add/remove flags:
+ whatever change the user requests is passed on to the connection manager
+ (which might reject it)
+
+* PendingReady objects returned by Connection::becomeReady() have the
+ Connection as parent, rather than an internal object that isn't useful
+ to library users
telepathy-qt4 0.1.0 (2009-02-26)
================================
diff --git a/configure.ac b/configure.ac
index a2a710a9..94803bb7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -11,8 +11,8 @@ AC_PREREQ([2.59])
m4_define([tp_qt4_major_version], [0])
m4_define([tp_qt4_minor_version], [1])
-m4_define([tp_qt4_micro_version], [0])
-m4_define([tp_qt4_nano_version], [1])
+m4_define([tp_qt4_micro_version], [1])
+m4_define([tp_qt4_nano_version], [0])
# If library source has changed since last release, increment revision
# If interfaces have been added, removed or changed since last release,