[folks] Release version 0.7.3
- From: Philip Withnall <pwithnall src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [folks] Release version 0.7.3
- Date: Sun, 29 Jul 2012 15:43:29 +0000 (UTC)
commit 97a92c56e04e03467c2fd764e96db9b64ad26ca6
Author: Philip Withnall <philip tecnocode co uk>
Date: Sun Jul 29 17:26:07 2012 +0200
Release version 0.7.3
NEWS | 8 ++++----
backends/eds/lib/edsf-persona.vala | 6 +++---
backends/key-file/kf-persona.vala | 4 ++--
configure.ac | 10 +++++-----
folks/anti-linkable.vala | 12 ++++++------
folks/individual-aggregator.vala | 2 +-
folks/individual.vala | 4 ++--
folks/persona-store.vala | 2 +-
8 files changed, 24 insertions(+), 24 deletions(-)
---
diff --git a/NEWS b/NEWS
index d586eed..c1726c2 100644
--- a/NEWS
+++ b/NEWS
@@ -1,11 +1,7 @@
Overview of changes from libfolks 0.7.2 to libfolks 0.7.3
=========================================================
-Dependencies:
-â libgee â 0.8
-
Bugs fixed:
-â Bug 673918 â Port to newer libgee
â Bug 629537 â Support anti-linking
â Bug 679618 â Crash when unsetting all groups
â Bug 678696 â Add API for EDS Google system groups
@@ -14,6 +10,10 @@ Bugs fixed:
â Bug 660128 â Most contacts don't have an avatar
â Bug 652637 â Don't hold locks across async calls
â Bug 660236 â Paging for long text in folks-inspect
+â Bug 679116 â Output debug message if modules are not loaded because of mime
+ type detection
+â Bug 657456 â Folks test output not terribly useful
+â Bug 674611 â Remove gconf.path once EDS drops GConf
API changes:
â Add AntiLinkable interface and implement it on Kf.Persona and Edsf.Persona
diff --git a/backends/eds/lib/edsf-persona.vala b/backends/eds/lib/edsf-persona.vala
index 71804c3..c4883e9 100644
--- a/backends/eds/lib/edsf-persona.vala
+++ b/backends/eds/lib/edsf-persona.vala
@@ -679,7 +679,7 @@ public class Edsf.Persona : Folks.Persona,
/**
* { inheritDoc}
*
- * @since UNRELEASED
+ * @since 0.7.3
*/
[CCode (notify = false)]
public Set<string> anti_links
@@ -691,7 +691,7 @@ public class Edsf.Persona : Folks.Persona,
/**
* { inheritDoc}
*
- * @since UNRELEASED
+ * @since 0.7.3
*/
public async void change_anti_links (Set<string> anti_links)
throws PropertyError
@@ -705,7 +705,7 @@ public class Edsf.Persona : Folks.Persona,
* Whether this contact is in the âMy Contactsâ section of the userâs address
* book, rather than the âOtherâ section.
*
- * @since UNRELEASED
+ * @since 0.7.3
*/
[CCode (notify = false)]
public bool in_google_personal_group
diff --git a/backends/key-file/kf-persona.vala b/backends/key-file/kf-persona.vala
index 3977040..b44f517 100644
--- a/backends/key-file/kf-persona.vala
+++ b/backends/key-file/kf-persona.vala
@@ -264,7 +264,7 @@ public class Folks.Backends.Kf.Persona : Folks.Persona,
/**
* { inheritDoc}
*
- * @since UNRELEASED
+ * @since 0.7.3
*/
[CCode (notify = false)]
public Set<string> anti_links
@@ -276,7 +276,7 @@ public class Folks.Backends.Kf.Persona : Folks.Persona,
/**
* { inheritDoc}
*
- * @since UNRELEASED
+ * @since 0.7.3
*/
public async void change_anti_links (Set<string> anti_links)
throws PropertyError
diff --git a/configure.ac b/configure.ac
index 71f70c5..f04a150 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], [7])
-m4_define([folks_micro_version], [2])
-m4_define([folks_nano_version], [2])
+m4_define([folks_micro_version], [3])
+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], [35])
+m4_define([folks_lt_current], [36])
m4_define([folks_lt_revision], [0])
-m4_define([folks_lt_age], [10])
+m4_define([folks_lt_age], [11])
# Display the nano_version only if it's not '0'
m4_define([folks_base_version],
diff --git a/folks/anti-linkable.vala b/folks/anti-linkable.vala
index e90851e..a40798e 100644
--- a/folks/anti-linkable.vala
+++ b/folks/anti-linkable.vala
@@ -29,7 +29,7 @@ using GLib;
* { link Persona} (A), specifying that A must not be linked into an
* { link Individual} with any of the personas in its anti-links set.
*
- * @since UNRELEASED
+ * @since 0.7.3
*/
public interface Folks.AntiLinkable : Folks.Persona
{
@@ -50,7 +50,7 @@ public interface Folks.AntiLinkable : Folks.Persona
* { link AntiLinkable.anti_links} set, persona B will typically also list
* persona A in its anti-links set.
*
- * @since UNRELEASED
+ * @since 0.7.3
*/
public abstract Set<string> anti_links { get; set; }
@@ -71,7 +71,7 @@ public interface Folks.AntiLinkable : Folks.Persona
*
* @param anti_links the new set of anti-links from this persona
* @throws PropertyError if setting the anti-links failed
- * @since UNRELEASED
+ * @since 0.7.3
*/
public virtual async void change_anti_links (Set<string> anti_links)
throws PropertyError
@@ -89,7 +89,7 @@ public interface Folks.AntiLinkable : Folks.Persona
*
* @param other_persona the persona to check is anti-linked
* @return `true` if an anti-link exists, `false` otherwise
- * @since UNRELEASED
+ * @since 0.7.3
*/
public bool has_anti_link_with_persona (Persona other_persona)
{
@@ -107,7 +107,7 @@ public interface Folks.AntiLinkable : Folks.Persona
*
* @param other_personas the personas to anti-link to this one
* @throws PropertyError if setting the anti-links failed
- * @since UNRELEASED
+ * @since 0.7.3
*/
public async void add_anti_links (Set<Persona> other_personas)
throws PropertyError
@@ -137,7 +137,7 @@ public interface Folks.AntiLinkable : Folks.Persona
*
* @param other_personas the personas to remove anti-links from this one
* @throws PropertyError if setting the anti-links failed
- * @since UNRELEASED
+ * @since 0.7.3
*/
public async void remove_anti_links (Set<Persona> other_personas)
throws PropertyError
diff --git a/folks/individual-aggregator.vala b/folks/individual-aggregator.vala
index d938f5f..6a61a88 100644
--- a/folks/individual-aggregator.vala
+++ b/folks/individual-aggregator.vala
@@ -577,7 +577,7 @@ public class Folks.IndividualAggregator : Object
* calls might return before the first one. (Though they will be safe in every
* other respect.)
*
- * @since UNRELEASED
+ * @since 0.7.3
* @throws GLib.Error if unpreparing the backend-specific services failed â
* this will be a backend-specific error
*/
diff --git a/folks/individual.vala b/folks/individual.vala
index 50ea70e..da02f8b 100644
--- a/folks/individual.vala
+++ b/folks/individual.vala
@@ -2225,7 +2225,7 @@ public class Folks.Individual : Object,
* @param p persona to check for anti-links with
* @return `true` if this individual is anti-linked with persona `p`; `false`
* otherwise
- * @since UNRELEASED
+ * @since 0.7.3
*/
public bool has_anti_link_with_persona (Persona p)
{
@@ -2258,7 +2258,7 @@ public class Folks.Individual : Object,
* @param i individual to check for anti-links with
* @return `true` if this individual is anti-linked with individual `i`;
* `false` otherwise
- * @since UNRELEASED
+ * @since 0.7.3
*/
public bool has_anti_link_with_individual (Individual i)
{
diff --git a/folks/persona-store.vala b/folks/persona-store.vala
index 307352e..cad7376 100644
--- a/folks/persona-store.vala
+++ b/folks/persona-store.vala
@@ -299,7 +299,7 @@ public enum Folks.PersonaDetail
/**
* Field for { link AntiLinkable.anti_links}.
*
- * @since UNRELEASED
+ * @since 0.7.3
*/
ANTI_LINKS,
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]