[folks] Release version 0.9.0
- From: Travis Reitter <treitter src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [folks] Release version 0.9.0
- Date: Mon, 18 Feb 2013 02:10:40 +0000 (UTC)
commit 32cbf8af68e5a167fa29fe19e77e98c47512e28c
Author: Travis Reitter <travis reitter collabora co uk>
Date: Sun Feb 17 16:33:26 2013 -0800
Release version 0.9.0
backends/eds/lib/edsf-persona-store.vala | 4 ++--
backends/eds/lib/edsf-persona.vala | 6 +++---
backends/libsocialweb/sw-backend.vala | 10 +++++-----
backends/ofono/ofono-backend-factory.vala | 6 +++---
backends/ofono/ofono-backend.vala | 2 +-
backends/ofono/ofono-persona-store.vala | 8 ++++----
backends/ofono/ofono-persona.vala | 4 ++--
configure.ac | 8 ++++----
folks/abstract-field-details.vala | 4 ++--
folks/backend.vala | 6 +++---
folks/individual-aggregator.vala | 2 +-
11 files changed, 30 insertions(+), 30 deletions(-)
---
diff --git a/backends/eds/lib/edsf-persona-store.vala b/backends/eds/lib/edsf-persona-store.vala
index 9cef837..0066c8b 100644
--- a/backends/eds/lib/edsf-persona-store.vala
+++ b/backends/eds/lib/edsf-persona-store.vala
@@ -87,7 +87,7 @@ public class Edsf.PersonaStore : Folks.PersonaStore
* @throws GLib.Error if an error occurred while creating or committing to
* the { link E.SourceRegistry}
*
- * @since UNRELEASED
+ * @since 0.9.0
*/
public static async void create_address_book (string id) throws GLib.Error
{
@@ -121,7 +121,7 @@ public class Edsf.PersonaStore : Folks.PersonaStore
* @param store the PersonaStore to delete the address book for.
* @throws GLib.Error if an error occurred in { link E.Source.remove}
*
- * @since UNRELEASED
+ * @since 0.9.0
*/
public static async void remove_address_book (Edsf.PersonaStore store) throws GLib.Error
{
diff --git a/backends/eds/lib/edsf-persona.vala b/backends/eds/lib/edsf-persona.vala
index 02c68e6..b082ae0 100644
--- a/backends/eds/lib/edsf-persona.vala
+++ b/backends/eds/lib/edsf-persona.vala
@@ -642,7 +642,7 @@ public class Edsf.Persona : Folks.Persona,
*
* @param system_groups the complete set of system group ids the contact should be a member of
* @throws PropertyError if setting the groups failed
- * @since UNRELEASED
+ * @since 0.9.0
*/
public async void change_system_groups (Set<string> system_groups) throws PropertyError
{
@@ -664,7 +664,7 @@ public class Edsf.Persona : Folks.Persona,
*
* @param in_personal Whether to add or remove the personal group membership
* @throws PropertyError if the address book is not Google, or if setting the property failed
- * @since UNRELEASED
+ * @since 0.9.0
*/
public async void change_in_google_personal_group (bool in_personal) throws PropertyError
{
@@ -833,7 +833,7 @@ public class Edsf.Persona : Folks.Persona,
* The complete set of system group identifiers the contact belongs to.
* See { link Persona.change_system_groups} for details.
*
- * @since UNRELEASED
+ * @since 0.9.0
*/
[CCode (notify = false)]
public Set<string>? system_groups
diff --git a/backends/libsocialweb/sw-backend.vala b/backends/libsocialweb/sw-backend.vala
index 7f809ef..5df08f1 100644
--- a/backends/libsocialweb/sw-backend.vala
+++ b/backends/libsocialweb/sw-backend.vala
@@ -56,7 +56,7 @@ public class Folks.Backends.Sw.Backend : Folks.Backend
/**
* { inheritDoc}
*
- * @since UNRELEASED
+ * @since 0.9.0
*/
public override void enable_persona_store (Folks.PersonaStore store)
{
@@ -69,7 +69,7 @@ public class Folks.Backends.Sw.Backend : Folks.Backend
/**
* { inheritDoc}
*
- * @since UNRELEASED
+ * @since 0.9.0
*/
public override void disable_persona_store (Folks.PersonaStore store)
{
@@ -82,7 +82,7 @@ public class Folks.Backends.Sw.Backend : Folks.Backend
/**
* { inheritDoc}
*
- * @since UNRELEASED
+ * @since 0.9.0
*/
public override void set_persona_stores (Set<string>? storeids)
{
@@ -245,7 +245,7 @@ public class Folks.Backends.Sw.Backend : Folks.Backend
*
* @param store the store to add.
* @param notify whether or not to emit notification signals.
- * @since UNRELEASED
+ * @since 0.9.0
*/
private void _add_store (PersonaStore store, bool notify = true)
{
@@ -263,7 +263,7 @@ public class Folks.Backends.Sw.Backend : Folks.Backend
*
* @param store the store to remove.
* @param notify whether or not to emit notification signals.
- * @since UNRELEASED
+ * @since 0.9.0
*/
private void _remove_store (PersonaStore store, bool notify = true)
{
diff --git a/backends/ofono/ofono-backend-factory.vala b/backends/ofono/ofono-backend-factory.vala
index 5a8aa33..22e175e 100644
--- a/backends/ofono/ofono-backend-factory.vala
+++ b/backends/ofono/ofono-backend-factory.vala
@@ -35,7 +35,7 @@ private BackendFactory? _backend_factory = null;
*
* @param backend_store the { link BackendStore} to use in this factory.
*
- * @since UNRELEASED
+ * @since 0.9.0
*/
public void module_init (BackendStore backend_store)
{
@@ -47,7 +47,7 @@ public void module_init (BackendStore backend_store)
*
* @param backend_store the { link BackendStore} used in this factory.
*
- * @since UNRELEASED
+ * @since 0.9.0
*/
public void module_finalize (BackendStore backend_store)
{
@@ -57,7 +57,7 @@ public void module_finalize (BackendStore backend_store)
/**
* A backend factory to create a single { link Backend}.
*
- * @since UNRELEASED
+ * @since 0.9.0
*/
public class Folks.Backends.Ofono.BackendFactory : Object
{
diff --git a/backends/ofono/ofono-backend.vala b/backends/ofono/ofono-backend.vala
index 404b098..b4cb634 100644
--- a/backends/ofono/ofono-backend.vala
+++ b/backends/ofono/ofono-backend.vala
@@ -34,7 +34,7 @@ extern const string BACKEND_NAME;
* devices using the Ofono Phonebook D-Bus API and presents them
* using one { link PersonaStore} per device.
*
- * @since UNRELEASED
+ * @since 0.9.0
*/
public class Folks.Backends.Ofono.Backend : Folks.Backend
{
diff --git a/backends/ofono/ofono-persona-store.vala b/backends/ofono/ofono-persona-store.vala
index 05a2dad..4cd339d 100644
--- a/backends/ofono/ofono-persona-store.vala
+++ b/backends/ofono/ofono-persona-store.vala
@@ -31,7 +31,7 @@ using Folks.Backends.Ofono;
* A persona store which is associated with a single Ofono device. It will
* create a { link Persona} for each contact on the SIM card phonebook.
*
- * @since UNRELEASED
+ * @since 0.9.0
*/
public class Folks.Backends.Ofono.PersonaStore : Folks.PersonaStore
{
@@ -124,7 +124,7 @@ public class Folks.Backends.Ofono.PersonaStore : Folks.PersonaStore
* @param path the D-Bus object path of this modem
* @param alias the name this modem should display to users
*
- * @since UNRELEASED
+ * @since 0.9.0
*/
public PersonaStore (ObjectPath path, string alias)
{
@@ -261,7 +261,7 @@ public class Folks.Backends.Ofono.PersonaStore : Folks.PersonaStore
*
* @param persona the { link Persona} to remove.
*
- * @since UNRELEASED
+ * @since 0.9.0
*/
public override async void remove_persona (Folks.Persona persona)
throws Folks.PersonaStoreError
@@ -280,7 +280,7 @@ public class Folks.Backends.Ofono.PersonaStore : Folks.PersonaStore
*
* @param details the details of the { link Persona} to add.
*
- * @since UNRELEASED
+ * @since 0.9.0
*/
public override async Folks.Persona? add_persona_from_details (
HashTable<string, Value?> details) throws Folks.PersonaStoreError
diff --git a/backends/ofono/ofono-persona.vala b/backends/ofono/ofono-persona.vala
index 79a91ed..2ef2957 100644
--- a/backends/ofono/ofono-persona.vala
+++ b/backends/ofono/ofono-persona.vala
@@ -29,7 +29,7 @@ using Folks.Backends.Ofono;
/**
* A persona subclass which represents a single persona from a simple key file.
*
- * @since UNRELEASED
+ * @since 0.9.0
*/
public class Folks.Backends.Ofono.Persona : Folks.Persona,
EmailDetails,
@@ -125,7 +125,7 @@ public class Folks.Backends.Ofono.Persona : Folks.Persona,
* @param vcard the vCard data to use for this { link Persona}.
* @param store the { link PersonaStore} this { link Persona} belongs to.
*
- * @since UNRELEASED
+ * @since 0.9.0
*/
public Persona (string vcard, Folks.PersonaStore store)
{
diff --git a/configure.ac b/configure.ac
index e577fee..c464b86 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
# 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], [9])
@@ -11,9 +11,9 @@ m4_define([folks_nano_version], [0])
# 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], [37])
-m4_define([folks_lt_revision], [1])
-m4_define([folks_lt_age], [12])
+m4_define([folks_lt_current], [38])
+m4_define([folks_lt_revision], [0])
+m4_define([folks_lt_age], [13])
# Display the nano_version only if it's not '0'
m4_define([folks_base_version],
diff --git a/folks/abstract-field-details.vala b/folks/abstract-field-details.vala
index 2bd8b64..eab0c71 100644
--- a/folks/abstract-field-details.vala
+++ b/folks/abstract-field-details.vala
@@ -288,7 +288,7 @@ public abstract class Folks.AbstractFieldDetails<T> : Object
*
* @return whether the elemants are equal
*
- * @since UNRELEASED
+ * @since 0.9.0
*/
public static bool equal_static (AbstractFieldDetails left,
AbstractFieldDetails right)
@@ -444,7 +444,7 @@ public abstract class Folks.AbstractFieldDetails<T> : Object
*
* @return the hash value
*
- * @since UNRELEASED
+ * @since 0.9.0
*/
public static uint hash_static (AbstractFieldDetails value)
{
diff --git a/folks/backend.vala b/folks/backend.vala
index 176c9bd..96acdc7 100644
--- a/folks/backend.vala
+++ b/folks/backend.vala
@@ -98,7 +98,7 @@ public abstract class Folks.Backend : Object
*
* @param store the { link PersonaStore} to disable.
*
- * @since UNRELEASED
+ * @since 0.9.0
*/
public abstract void disable_persona_store (PersonaStore store);
@@ -112,7 +112,7 @@ public abstract class Folks.Backend : Object
*
* @param store the { link PersonaStore} to enable.
*
- * @since UNRELEASED
+ * @since 0.9.0
*/
public abstract void enable_persona_store (PersonaStore store);
@@ -130,7 +130,7 @@ public abstract class Folks.Backend : Object
*
* @param storeids a Set of { link PersonaStore} IDs to use.
*
- * @since UNRELEASED
+ * @since 0.9.0
*/
public abstract void set_persona_stores (Set<string>? storeids);
diff --git a/folks/individual-aggregator.vala b/folks/individual-aggregator.vala
index 53bcbf7..d8cdaed 100644
--- a/folks/individual-aggregator.vala
+++ b/folks/individual-aggregator.vala
@@ -335,7 +335,7 @@ public class Folks.IndividualAggregator : Object
*
* @param store the { link BackendStore} to use instead of the default one.
*
- * @since UNRELEASED
+ * @since 0.9.0
*/
public IndividualAggregator.with_backend_store (BackendStore store)
{
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]