Release version 0.6.4 FOLKS_0_6_4
authorTravis Reitter <travis.reitter@collabora.co.uk>
Mon, 17 Oct 2011 18:54:47 +0000 (11:54 -0700)
committerTravis Reitter <travis.reitter@collabora.co.uk>
Tue, 18 Oct 2011 04:01:33 +0000 (21:01 -0700)
backends/telepathy/lib/tpf-persona.vala
configure.ac
folks/persona-store.vala

index fd451d3..2a626c9 100644 (file)
@@ -92,7 +92,7 @@ public class Tpf.Persona : Folks.Persona,
   /**
    * {@inheritDoc}
    *
-   * @since UNRELEASED
+   * @since 0.6.4
    */
   [CCode (notify = false)]
   public StructuredName? structured_name
@@ -104,7 +104,7 @@ public class Tpf.Persona : Folks.Persona,
   /**
    * {@inheritDoc}
    *
-   * @since UNRELEASED
+   * @since 0.6.4
    */
   [CCode (notify = false)]
   public string full_name
@@ -116,7 +116,7 @@ public class Tpf.Persona : Folks.Persona,
   /**
    * {@inheritDoc}
    *
-   * @since UNRELEASED
+   * @since 0.6.4
    */
   public async void change_full_name (string full_name) throws PropertyError
     {
@@ -152,7 +152,7 @@ public class Tpf.Persona : Folks.Persona,
   /**
    * {@inheritDoc}
    *
-   * @since UNRELEASED
+   * @since 0.6.4
    */
   [CCode (notify = false)]
   public string nickname
@@ -166,7 +166,7 @@ public class Tpf.Persona : Folks.Persona,
    *
    * ContactInfo has no equivalent field, so this is unsupported.
    *
-   * @since UNRELEASED
+   * @since 0.6.4
    */
   [CCode (notify = false)]
   public string? calendar_event_id
@@ -179,7 +179,7 @@ public class Tpf.Persona : Folks.Persona,
   /**
    * {@inheritDoc}
    *
-   * @since UNRELEASED
+   * @since 0.6.4
    */
   [CCode (notify = false)]
   public DateTime? birthday
@@ -191,7 +191,7 @@ public class Tpf.Persona : Folks.Persona,
   /**
    * {@inheritDoc}
    *
-   * @since UNRELEASED
+   * @since 0.6.4
    */
   public async void change_birthday (DateTime? birthday) throws PropertyError
     {
@@ -349,7 +349,7 @@ public class Tpf.Persona : Folks.Persona,
   /**
    * {@inheritDoc}
    *
-   * @since UNRELEASED
+   * @since 0.6.4
    */
   [CCode (notify = false)]
   public Set<EmailFieldDetails> email_addresses
@@ -361,7 +361,7 @@ public class Tpf.Persona : Folks.Persona,
   /**
    * {@inheritDoc}
    *
-   * @since UNRELEASED
+   * @since 0.6.4
    */
   public async void change_email_addresses (
       Set<EmailFieldDetails> email_addresses) throws PropertyError
@@ -470,7 +470,7 @@ public class Tpf.Persona : Folks.Persona,
   /**
    * {@inheritDoc}
    *
-   * @since UNRELEASED
+   * @since 0.6.4
    */
   [CCode (notify = false)]
   public Set<PhoneFieldDetails> phone_numbers
@@ -482,7 +482,7 @@ public class Tpf.Persona : Folks.Persona,
   /**
    * {@inheritDoc}
    *
-   * @since UNRELEASED
+   * @since 0.6.4
    */
   public async void change_phone_numbers (
       Set<PhoneFieldDetails> phone_numbers) throws PropertyError
@@ -497,7 +497,7 @@ public class Tpf.Persona : Folks.Persona,
   /**
    * {@inheritDoc}
    *
-   * @since UNRELEASED
+   * @since 0.6.4
    */
   [CCode (notify = false)]
   public Set<UrlFieldDetails> urls
@@ -509,7 +509,7 @@ public class Tpf.Persona : Folks.Persona,
   /**
    * {@inheritDoc}
    *
-   * @since UNRELEASED
+   * @since 0.6.4
    */
   public async void change_urls (Set<UrlFieldDetails> urls) throws PropertyError
     {
index 18b4481..56f83e3 100644 (file)
@@ -1,10 +1,10 @@
 # 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], [3])
-m4_define([folks_nano_version], [3])
+m4_define([folks_micro_version], [4])
+m4_define([folks_nano_version], [0])
 
 # If library source has changed since last release, increment revision
 # If interfaces have been added, removed or changed since last release,
@@ -12,8 +12,8 @@ m4_define([folks_nano_version], [3])
 # If interfaces have been added since last release, increment age
 # If interfaces have been removed since last release, set age to 0
 m4_define([folks_lt_current], [27])
-m4_define([folks_lt_revision], [2])
-m4_define([folks_lt_age], [2])
+m4_define([folks_lt_revision], [3])
+m4_define([folks_lt_age], [3])
 
 # Display the nano_version only if it's not '0'
 m4_define([folks_base_version],
index 3b4c3e0..b64feeb 100644 (file)
@@ -120,7 +120,7 @@ public errordomain Folks.PersonaStoreError
    * Such an operation may only be performed on a {@link Persona} with
    * {@link Persona.is_user} set to `true`.
    *
-   * @since UNRELEASED
+   * @since 0.6.4
    */
   UNSUPPORTED_ON_NON_USER,
 }