Release version 0.7.1
authorTravis Reitter <travis.reitter@collabora.co.uk>
Mon, 4 Jun 2012 22:07:34 +0000 (15:07 -0700)
committerJeremy Whiting <jpwhiting@kde.org>
Wed, 13 Jun 2012 20:22:55 +0000 (14:22 -0600)
backends/telepathy/lib/tpf-persona.vala
configure.ac
folks/interaction-details.vala
folks/persona-store.vala
folks/presence-details.vala

index 5a7f8e3..e0da9d3 100644 (file)
@@ -399,7 +399,7 @@ public class Tpf.Persona : Folks.Persona,
    *
    * See {@link Folks.InteractionDetails.im_interaction_count}
    *
-   * @since UNRELEASED
+   * @since 0.7.1
    */
   public uint im_interaction_count
     {
@@ -414,7 +414,7 @@ public class Tpf.Persona : Folks.Persona,
    *
    * See {@link Folks.InteractionDetails.last_im_interaction_datetime}
    *
-   * @since UNRELEASED
+   * @since 0.7.1
    */
   public DateTime? last_im_interaction_datetime
     {
@@ -428,7 +428,7 @@ public class Tpf.Persona : Folks.Persona,
    *
    * See {@link Folks.InteractionDetails.call_interaction_count}
    *
-   * @since UNRELEASED
+   * @since 0.7.1
    */
   public uint call_interaction_count
     {
@@ -443,7 +443,7 @@ public class Tpf.Persona : Folks.Persona,
    *
    * See {@link Folks.InteractionDetails.last_call_interaction_datetime}
    *
-   * @since UNRELEASED
+   * @since 0.7.1
    */
   public DateTime? last_call_interaction_datetime
     {
index 2545d3b..b17436e 100644 (file)
@@ -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], [0])
-m4_define([folks_nano_version], [1])
+m4_define([folks_micro_version], [1])
+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], [33])
+m4_define([folks_lt_current], [34])
 m4_define([folks_lt_revision], [0])
-m4_define([folks_lt_age], [8])
+m4_define([folks_lt_age], [9])
 
 # Display the nano_version only if it's not '0'
 m4_define([folks_base_version],
index 90e5016..1528f68 100644 (file)
@@ -26,14 +26,14 @@ using GLib;
  * a {@link Persona} or an {@link Individual} as well as the the datetime of
  * the last call and IM interaction.
  *
- * @since UNRELEASED
+ * @since 0.7.1
  */
 public interface Folks.InteractionDetails : Object
 {
   /**
    * The IM interaction associated with a Persona
    *
-   * @since UNRELEASED
+   * @since 0.7.1
    */
   public abstract uint im_interaction_count
     {
@@ -43,7 +43,7 @@ public interface Folks.InteractionDetails : Object
   /**
    * The latest IM interaction timestamp associated with a Persona
    *
-   * @since UNRELEASED
+   * @since 0.7.1
    */
   public abstract DateTime? last_im_interaction_datetime
     {
@@ -53,7 +53,7 @@ public interface Folks.InteractionDetails : Object
   /**
    * The call interaction associated with a Persona
    *
-   * @since UNRELEASED
+   * @since 0.7.1
    */
   public abstract uint call_interaction_count
     {
@@ -63,7 +63,7 @@ public interface Folks.InteractionDetails : Object
   /**
    * The latest call interaction timestamp associated with a Persona
    *
-   * @since UNRELEASED
+   * @since 0.7.1
    */
   public abstract DateTime? last_call_interaction_datetime
     {
index 5609cd8..6fa0130 100644 (file)
@@ -271,28 +271,28 @@ public enum Folks.PersonaDetail
   /**
    * Field for {@link InteractionDetails.im_interaction_count}.
    *
-   * @since UNRELEASED
+   * @since 0.7.1
    */
   IM_INTERACTION_COUNT,
 
   /**
    * Field for {@link InteractionDetails.last_im_interaction_datetime}.
    *
-   * @since UNRELEASED
+   * @since 0.7.1
    */
   LAST_IM_INTERACTION_DATETIME,
 
   /**
    * Field for {@link InteractionDetails.call_interaction_count}.
    *
-   * @since UNRELEASED
+   * @since 0.7.1
    */
   CALL_INTERACTION_COUNT,
 
   /**
    * Field for {@link InteractionDetails.last_call_interaction_datetime}.
    *
-   * @since UNRELEASED
+   * @since 0.7.1
    */
   LAST_CALL_INTERACTION_DATETIME
 }
index ac1fa9c..82e8be6 100644 (file)
@@ -148,7 +148,7 @@ public interface Folks.PresenceDetails : Object
    * display string
    * @return a default translated display string for the given
    * {@link PresenceType}
-   * @since UNRELEASED
+   * @since 0.7.1
    */
   public static unowned string get_default_message_from_type (PresenceType type)
     {