summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Withnall <philip.withnall@collabora.co.uk>2010-08-27 11:02:26 +0100
committerPhilip Withnall <philip.withnall@collabora.co.uk>2010-08-27 11:02:26 +0100
commitd32c5b2be0b899239408e18a498a28c98c12bfcc (patch)
treef2327fea00370aae08921f6e7e0f52edc23e559a
parent5cd2f5278a2be05bb561759f5d0737bf0427a2dd (diff)
Fix symbol version numbers
I got mixed up between pre- and post-release incrementing.
-rw-r--r--backends/key-file/kf-persona.vala2
-rw-r--r--folks/individual.vala10
2 files changed, 6 insertions, 6 deletions
diff --git a/backends/key-file/kf-persona.vala b/backends/key-file/kf-persona.vala
index 8382a95..4a9375e 100644
--- a/backends/key-file/kf-persona.vala
+++ b/backends/key-file/kf-persona.vala
@@ -40,7 +40,7 @@ public class Folks.Backends.Kf.Persona : Folks.Persona,
/**
* {@inheritDoc}
*
- * @since 0.1.16
+ * @since 0.1.15
*/
public string alias
{
diff --git a/folks/individual.vala b/folks/individual.vala
index 9a644bf..39807d0 100644
--- a/folks/individual.vala
+++ b/folks/individual.vala
@@ -25,7 +25,7 @@ using Folks;
/**
* Trust level for an {@link Individual} for use in the UI.
*
- * @since 0.1.16
+ * @since 0.1.15
*/
public enum Folks.TrustLevel
{
@@ -40,7 +40,7 @@ public enum Folks.TrustLevel
* {@link Persona} would have this trust level, since someone else could
* easily spoof the link-local XMPP {@link Persona}'s identity.
*
- * @since 0.1.16
+ * @since 0.1.15
*/
NONE,
@@ -54,7 +54,7 @@ public enum Folks.TrustLevel
* Note that this doesn't guarantee that the user who behind each
* {@link Persona} is who they claim to be.
*
- * @since 0.1.16
+ * @since 0.1.15
*/
PERSONAS
}
@@ -95,7 +95,7 @@ public class Folks.Individual : Object,
* Clients should ''not'' allow linking of Individuals who have a trust level
* of {@link TrustLevel.NONE}.
*
- * @since 0.1.16
+ * @since 0.1.15
*/
public TrustLevel trust_level { get; private set; }
@@ -241,7 +241,7 @@ public class Folks.Individual : Object,
* @param added a list of {@link Persona}s which have been added
* @param removed a list of {@link Persona}s which have been removed
*
- * @since 0.1.16
+ * @since 0.1.15
*/
public signal void personas_changed (GLib.List<Persona>? added,
GLib.List<Persona>? removed);