summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTravis Reitter <travis.reitter@collabora.co.uk>2011-10-17 11:54:47 -0700
committerTravis Reitter <travis.reitter@collabora.co.uk>2011-10-17 21:01:33 -0700
commitb7f9f0cefc0d99eeaee01b1d193b60b73429d169 (patch)
tree5dfeb4b1f99fb0afb0c9004300b095750ac30142
parent5afaf3d0ed7f0473ad449171ce48968f7a7caf9d (diff)
Release version 0.6.4FOLKS_0_6_4
-rw-r--r--backends/telepathy/lib/tpf-persona.vala26
-rw-r--r--configure.ac10
-rw-r--r--folks/persona-store.vala2
3 files changed, 19 insertions, 19 deletions
diff --git a/backends/telepathy/lib/tpf-persona.vala b/backends/telepathy/lib/tpf-persona.vala
index fd451d32..2a626c9c 100644
--- a/backends/telepathy/lib/tpf-persona.vala
+++ b/backends/telepathy/lib/tpf-persona.vala
@@ -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
{
diff --git a/configure.ac b/configure.ac
index 18b44819..56f83e3c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -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],
diff --git a/folks/persona-store.vala b/folks/persona-store.vala
index 3b4c3e00..b64feebd 100644
--- a/folks/persona-store.vala
+++ b/folks/persona-store.vala
@@ -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,
}