summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Withnall <philip@tecnocode.co.uk>2012-04-17 13:27:37 +0100
committerPhilip Withnall <philip@tecnocode.co.uk>2012-04-17 13:27:37 +0100
commit66c248254e5e602ff55edcfebaac0475aeddc469 (patch)
tree2097409b96ea5c3497850cd08ecc66e5e13507bc
parentd7b8ccbe27d0a1ff3e9ed291e04ba18a86d5f89f (diff)
Release version 0.7.0FOLKS_0_7_0
-rw-r--r--NEWS6
-rw-r--r--backends/telepathy/lib/tpf-persona-store.vala2
-rw-r--r--configure.ac12
-rw-r--r--folks/individual-aggregator.vala2
4 files changed, 14 insertions, 8 deletions
diff --git a/NEWS b/NEWS
index a0031ec8..45bb5d77 100644
--- a/NEWS
+++ b/NEWS
@@ -1,9 +1,15 @@
Overview of changes from libfolks 0.6.9 to libfolks 0.7.0
=========================================================
+Major changes:
+* Folks now uses the Connection.ContactList Telepathy spec. instead of the
+ deprecated Channel.ContactList. This means legacy Connection Managers
+ (notably telepathy-butterfly) are not supported any more .
+
Bugs fixed:
• Bug 658576 — Need API to get a FolksIndividual from his ID
• Bug 671662 — Renamed alias of Facebook contact is not saved
+• Bug 630822 — Support Connection.Interface.ContactList API
API changes:
• Add IndividualAggregator.look_up_individual()
diff --git a/backends/telepathy/lib/tpf-persona-store.vala b/backends/telepathy/lib/tpf-persona-store.vala
index 80c2a8c4..d43b1ac7 100644
--- a/backends/telepathy/lib/tpf-persona-store.vala
+++ b/backends/telepathy/lib/tpf-persona-store.vala
@@ -36,7 +36,7 @@ extern const string BACKEND_NAME;
* User must define contact features it wants on the #TpSimpleClientFactory of
* the default #TpAccountManager returned by tp_account_manager_dup() *before*
* preparing telepathy stores. Note that this is a behaviour change since
- * 0.UNRELEASED, folks won't force preparing any feature anymore.
+ * 0.7.0, folks won't force preparing any feature anymore.
*/
public class Tpf.PersonaStore : Folks.PersonaStore
{
diff --git a/configure.ac b/configure.ac
index 2f5cd0d8..c2624d5a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,19 +1,19 @@
# If not 1, append datestamp to the version number
-m4_define([folks_released], [0])
+m4_define([folks_released], [1])
m4_define([folks_major_version], [0])
-m4_define([folks_minor_version], [6])
-m4_define([folks_micro_version], [8])
-m4_define([folks_nano_version], [1])
+m4_define([folks_minor_version], [7])
+m4_define([folks_micro_version], [0])
+m4_define([folks_nano_version], [0])
# If library source has changed since last release, increment revision
# If public symbols have been added, removed or changed since last release,
# increment current and set revision to 0
# If public symbols have been added since last release, increment age
# If public symbols have been removed since last release, set age to 0
-m4_define([folks_lt_current], [32])
+m4_define([folks_lt_current], [33])
m4_define([folks_lt_revision], [0])
-m4_define([folks_lt_age], [7])
+m4_define([folks_lt_age], [8])
# Display the nano_version only if it's not '0'
m4_define([folks_base_version],
diff --git a/folks/individual-aggregator.vala b/folks/individual-aggregator.vala
index 1100a0ca..fabca54d 100644
--- a/folks/individual-aggregator.vala
+++ b/folks/individual-aggregator.vala
@@ -2031,7 +2031,7 @@ public class Folks.IndividualAggregator : Object
* @return individual with `id`, or `null` if no such individual was found
* @throws GLib.Error from {@link IndividualAggregator.prepare}
*
- * @since UNRELEASED
+ * @since 0.7.0
*/
public async Individual? look_up_individual (string id) throws GLib.Error
{