[folks] Fix the documentation version tags



commit 1c0ae0afc8c99370b9736bf647a011e17e728102
Author: Philip Withnall <philip withnall collabora co uk>
Date:   Mon Feb 14 23:06:02 2011 +0000

    Fix the documentation version tags
    
    I fail at doing releases.

 backends/telepathy/lib/tpf-persona.vala |    2 +-
 folks/backend-store.vala                |    4 ++--
 folks/emailable.vala                    |    4 ++--
 folks/field-details.vala                |   18 +++++++++---------
 folks/gender-owner.vala                 |    6 +++---
 folks/individual-aggregator.vala        |    2 +-
 folks/name-owner.vala                   |   26 +++++++++++++-------------
 folks/phoneable.vala                    |    4 ++--
 folks/urlable.vala                      |    4 ++--
 9 files changed, 35 insertions(+), 35 deletions(-)
---
diff --git a/backends/telepathy/lib/tpf-persona.vala b/backends/telepathy/lib/tpf-persona.vala
index 6b8151d..8bb5155 100644
--- a/backends/telepathy/lib/tpf-persona.vala
+++ b/backends/telepathy/lib/tpf-persona.vala
@@ -55,7 +55,7 @@ public class Tpf.Persona : Folks.Persona,
    * this case, it means that the persona has been retrieved from the Telepathy
    * connection, but has not been added to the user's contact list.
    *
-   * @since 0.3.UNRELEASED
+   * @since 0.3.5
    */
   public bool is_in_contact_list { get; set; }
 
diff --git a/folks/backend-store.vala b/folks/backend-store.vala
index 4801967..1b1ae8c 100644
--- a/folks/backend-store.vala
+++ b/folks/backend-store.vala
@@ -73,7 +73,7 @@ public class Folks.BackendStore : Object {
    *
    * The backends in this list have been prepared and are ready to use.
    *
-   * @since 0.3.UNRELEASED
+   * @since 0.3.5
    */
   public GLib.List<Backend> enabled_backends
     {
@@ -347,7 +347,7 @@ public class Folks.BackendStore : Object {
    * @param name the backend name to retrieve
    * @return the backend, or `null` if none could be found
    *
-   * @since 0.3.UNRELEASED
+   * @since 0.3.5
    */
   public Backend? dup_backend_by_name (string name)
     {
diff --git a/folks/emailable.vala b/folks/emailable.vala
index 09db2ad..f26db6c 100644
--- a/folks/emailable.vala
+++ b/folks/emailable.vala
@@ -24,14 +24,14 @@ using GLib;
  * Interface for classes that have email addresses, such as { link Persona}
  * and { link Individual}.
  *
- * @since 0.3.UNRELEASED
+ * @since 0.3.5
  */
 public interface Folks.Emailable : Object
 {
   /**
    * The email addresses of the contact.
    *
-   * @since 0.3.UNRELEASED
+   * @since 0.3.5
    */
   public abstract List<FieldDetails> email_addresses { get; set; }
 }
diff --git a/folks/field-details.vala b/folks/field-details.vala
index 54a60cf..7cd7464 100644
--- a/folks/field-details.vala
+++ b/folks/field-details.vala
@@ -31,7 +31,7 @@ using GLib;
  * a FieldDetails with value "(111) 555-1234" and with parameters
  * `['type': ('work', 'voice')]`.
  *
- * @since 0.3.UNRELEASED
+ * @since 0.3.5
  */
 public class Folks.FieldDetails : Object
 {
@@ -40,7 +40,7 @@ public class Folks.FieldDetails : Object
    * The value of the field, the exact content depends on what the structure is
    * used for.
    *
-   * @since 0.3.UNRELEASED
+   * @since 0.3.5
    */
   public string value { get; set; }
 
@@ -51,7 +51,7 @@ public class Folks.FieldDetails : Object
    * { link Folks.FieldDetails.value}. The keys are the names of the
    * parameters, while the values are a list of strings.
    *
-   * @since 0.3.UNRELEASED
+   * @since 0.3.5
    */
   public HashTable<string, List<string>> parameters { get; set; }
 
@@ -61,7 +61,7 @@ public class Folks.FieldDetails : Object
    * @param value the value of the field
    * @return a new FieldDetails
    *
-   * @since 0.3.UNRELEASED
+   * @since 0.3.5
    */
   public FieldDetails (string value)
     {
@@ -77,7 +77,7 @@ public class Folks.FieldDetails : Object
    * @return a list of values for `parameter_name` or `null` (i.e. an empty
    * list) if there are no such parameters.
    *
-   * @since 0.3.UNRELEASED
+   * @since 0.3.5
    */
   public unowned List<string> get_parameter_values (string parameter_name)
     {
@@ -93,7 +93,7 @@ public class Folks.FieldDetails : Object
    * @param parameter_name the name of the parameter
    * @param parameter_value the value to add
    *
-   * @since 0.3.UNRELEASED
+   * @since 0.3.5
    */
   public void add_parameter (string parameter_name, string parameter_value)
     {
@@ -120,7 +120,7 @@ public class Folks.FieldDetails : Object
    * @param parameter_name the name of the parameter
    * @param parameter_value the value to add
    *
-   * @since 0.3.UNRELEASED
+   * @since 0.3.5
    */
   public void set_parameter (string parameter_name, string parameter_value)
     {
@@ -136,7 +136,7 @@ public class Folks.FieldDetails : Object
    *
    * @param additional the parameters to add
    *
-   * @since 0.3.UNRELEASED
+   * @since 0.3.5
    */
   public void extend_parameters (HashTable<string, List<string>> additional)
     {
@@ -155,7 +155,7 @@ public class Folks.FieldDetails : Object
    *
    * @param parameter_name the name of the parameter
    *
-   * @since 0.3.UNRELEASED
+   * @since 0.3.5
    */
   public void remove_parameter_all (string parameter_name)
     {
diff --git a/folks/gender-owner.vala b/folks/gender-owner.vala
index 5d3b25a..77f75e0 100644
--- a/folks/gender-owner.vala
+++ b/folks/gender-owner.vala
@@ -24,7 +24,7 @@ using GLib;
 /**
  * The gender of a contact
  *
- * @since 0.3.UNRELEASED
+ * @since 0.3.5
  */
 public enum Folks.Gender
 {
@@ -45,14 +45,14 @@ public enum Folks.Gender
 /**
  * Interface for specifying the gender of a contact.
  *
- * @since 0.3.UNRELEASED
+ * @since 0.3.5
  */
 public interface Folks.GenderOwner : Object
 {
   /**
    * The gender of the contact.
    *
-   * @since 0.3.UNRELEASED
+   * @since 0.3.5
    */
   public abstract Gender gender { get; set; }
 }
diff --git a/folks/individual-aggregator.vala b/folks/individual-aggregator.vala
index e2acd37..9bc5a27 100644
--- a/folks/individual-aggregator.vala
+++ b/folks/individual-aggregator.vala
@@ -730,7 +730,7 @@ public class Folks.IndividualAggregator : Object
    * { link Persona} already existed. If non-`null`, the new { link Persona}
    * will also be added to a new or existing { link Individual} as necessary.
    *
-   * @since 0.3.UNRELEASED
+   * @since 0.3.5
    */
   public async Persona? add_persona_from_details (Individual? parent,
       PersonaStore persona_store,
diff --git a/folks/name-owner.vala b/folks/name-owner.vala
index 8c0314e..f712388 100644
--- a/folks/name-owner.vala
+++ b/folks/name-owner.vala
@@ -26,7 +26,7 @@ using GLib;
  * VCards.  The parts of the name are never null, an empty string
  * indicates that a property is not set.
  *
- * @since 0.3.UNRELEASED
+ * @since 0.3.5
  */
 public class Folks.StructuredName : Object
 {
@@ -36,7 +36,7 @@ public class Folks.StructuredName : Object
    *
    * The family name (also known as surname or last name) of a contact.
    *
-   * @since 0.3.UNRELEASED
+   * @since 0.3.5
    */
   public string family_name
     {
@@ -50,7 +50,7 @@ public class Folks.StructuredName : Object
    *
    * The family name (also known as first name) of a contact.
    *
-   * @since 0.3.UNRELEASED
+   * @since 0.3.5
    */
   public string given_name
     {
@@ -65,7 +65,7 @@ public class Folks.StructuredName : Object
    * The additional names of a contact, for instance the contact's
    * middle name.
    *
-   * @since 0.3.UNRELEASED
+   * @since 0.3.5
    */
   public string additional_names
     {
@@ -80,7 +80,7 @@ public class Folks.StructuredName : Object
    * The prefixes used in front of the name (for instance "Mr", "Mrs",
    * "Doctor" or honorific titles).
    *
-   * @since 0.3.UNRELEASED
+   * @since 0.3.5
    */
   public string prefixes
     {
@@ -94,7 +94,7 @@ public class Folks.StructuredName : Object
    *
    * The suffixes used after a name (for instance "PhD" or "Junior").
    *
-   * @since 0.3.UNRELEASED
+   * @since 0.3.5
    */
   public string suffixes
     {
@@ -114,7 +114,7 @@ public class Folks.StructuredName : Object
    * @param suffixes suffixes of the name
    * @return a new StructuredName
    *
-   * @since 0.3.UNRELEASED
+   * @since 0.3.5
    */
   public StructuredName (string? family_name, string? given_name,
       string? additional_names, string? prefixes, string? suffixes)
@@ -138,7 +138,7 @@ public class Folks.StructuredName : Object
    * @param given_name the given (first) name
    * @return a new StructuredName
    *
-   * @since 0.3.UNRELEASED
+   * @since 0.3.5
    */
   public StructuredName.simple (string? family_name, string? given_name)
     {
@@ -152,7 +152,7 @@ public class Folks.StructuredName : Object
    * @return `true` if all the components are the empty string, `false`
    * otherwise.
    *
-   * @since 0.3.UNRELEASED
+   * @since 0.3.5
    */
   public bool is_empty ()
     {
@@ -168,7 +168,7 @@ public class Folks.StructuredName : Object
  * Interface for classes which represent contacts with names, such as
  * { link Persona} and { link Individual}.
  *
- * @since 0.3.UNRELEASED
+ * @since 0.3.5
  */
 public interface Folks.NameOwner : Object
 {
@@ -181,7 +181,7 @@ public interface Folks.NameOwner : Object
    * the structured name, you just have to connect to the `notify` signal
    * of this property.
    *
-   * @since 0.3.UNRELEASED
+   * @since 0.3.5
    */
   public abstract StructuredName structured_name { get; set; }
 
@@ -195,7 +195,7 @@ public interface Folks.NameOwner : Object
    * The full name could or could not contain additional names (like a
    * middle name), prefixes or suffixes.
    *
-   * @since 0.3.UNRELEASED
+   * @since 0.3.5
    */
   public abstract string full_name { get; set; }
 
@@ -206,7 +206,7 @@ public interface Folks.NameOwner : Object
    * different from { link Aliasable.alias} as aliases can be chosen by
    * the user and not by the contacts themselves.
    *
-   * @since 0.3.UNRELEASED
+   * @since 0.3.5
    */
   public abstract string nickname { get; }
 }
diff --git a/folks/phoneable.vala b/folks/phoneable.vala
index b4d9cbe..7203794 100644
--- a/folks/phoneable.vala
+++ b/folks/phoneable.vala
@@ -24,7 +24,7 @@ using GLib;
  * Interface for classes that can provide a phone number, such as
  * { link Persona} and { link Individual}.
  *
- * @since 0.3.UNRELEASED
+ * @since 0.3.5
  */
 public interface Folks.Phoneable : Object
 {
@@ -33,7 +33,7 @@ public interface Folks.Phoneable : Object
    *
    * A list of phone numbers associated to the contact.
    *
-   * @since 0.3.UNRELEASED
+   * @since 0.3.5
    */
   public abstract List<FieldDetails> phone_numbers { get; set; }
 }
diff --git a/folks/urlable.vala b/folks/urlable.vala
index 3079dfa..005ebb8 100644
--- a/folks/urlable.vala
+++ b/folks/urlable.vala
@@ -24,7 +24,7 @@ using GLib;
 /**
  * Associates a list of URLs with a contact.
  *
- * @since 0.3.UNRELEASED
+ * @since 0.3.5
  */
 public interface Folks.Urlable : Object
 {
@@ -33,7 +33,7 @@ public interface Folks.Urlable : Object
    *
    * A list or websites associated to the contact.
    *
-   * @since 0.3.UNRELEASED
+   * @since 0.3.5
    */
   public abstract List<FieldDetails> urls { get; set; }
 }



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]