diff options
author | Jonny Lamb <jonny.lamb@collabora.co.uk> | 2012-08-27 18:08:08 +0100 |
---|---|---|
committer | Jonny Lamb <jonny.lamb@collabora.co.uk> | 2012-08-27 18:11:15 +0100 |
commit | 3ec4ea8efdfccad9fa5bfc0c90dd84ffdb002a9f (patch) | |
tree | 202460ca9b1f5d0f725b43e5e0a5771db45b8237 | |
parent | 54e3a228f78adb668b51ab1249fe6d60ecad0732 (diff) |
version 0.19.7telepathy-glib-0.19.7
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | configure.ac | 8 | ||||
-rw-r--r-- | telepathy-glib/abi.am | 1 | ||||
-rw-r--r-- | telepathy-glib/base-channel.c | 6 | ||||
-rw-r--r-- | telepathy-glib/base-channel.h | 6 | ||||
-rw-r--r-- | telepathy-glib/versions/0.19.7.abi | 7 |
6 files changed, 19 insertions, 11 deletions
@@ -1,4 +1,4 @@ -telepathy-glib 0.19.7 (UNRELEASED) +telepathy-glib 0.19.7 (2012-07-27) ================================== Enhancements: diff --git a/configure.ac b/configure.ac index ac1ea093a..7be693992 100644 --- a/configure.ac +++ b/configure.ac @@ -11,8 +11,8 @@ AC_PREREQ([2.59]) m4_define([tp_glib_major_version], [0]) m4_define([tp_glib_minor_version], [19]) -m4_define([tp_glib_micro_version], [6]) -m4_define([tp_glib_nano_version], [1]) +m4_define([tp_glib_micro_version], [7]) +m4_define([tp_glib_nano_version], [0]) # If library source has changed since last release, increment revision # If interfaces have been added, removed or changed since last release, @@ -26,9 +26,9 @@ m4_define([tp_glib_nano_version], [1]) # (we don't guarantee that we won't add ABI then remove it again, if it was # never seen in a release). -m4_define([tp_glib_lt_current], [75]) +m4_define([tp_glib_lt_current], [76]) m4_define([tp_glib_lt_revision], [0]) -m4_define([tp_glib_lt_age], [75]) +m4_define([tp_glib_lt_age], [76]) # Some magic m4_define([tp_glib_base_version], diff --git a/telepathy-glib/abi.am b/telepathy-glib/abi.am index 1de738667..487a3143f 100644 --- a/telepathy-glib/abi.am +++ b/telepathy-glib/abi.am @@ -91,6 +91,7 @@ ABI_LISTS = \ versions/0.19.3.abi \ versions/0.19.4.abi \ versions/0.19.6.abi \ + versions/0.19.7.abi \ $(NULL) # The quoting here is unnecessary but harmless, and has the useful side-effect diff --git a/telepathy-glib/base-channel.c b/telepathy-glib/base-channel.c index 9de2acf1b..9dfad0339 100644 --- a/telepathy-glib/base-channel.c +++ b/telepathy-glib/base-channel.c @@ -446,7 +446,7 @@ tp_base_channel_reopened (TpBaseChannel *chan, TpHandle initiator) * the #TpExportableChannel:channel-destroyed property will not be * set, and the channel will be unregistered from the bus. * - * Since: UNRELEASED + * Since: 0.19.7 */ void tp_base_channel_disappear (TpBaseChannel *chan) @@ -487,7 +487,7 @@ tp_base_channel_disappear (TpBaseChannel *chan) * and the #TpBaseChannel:requested property will be set to * @requested. * - * Since: UNRELEASED + * Since: 0.19.7 */ void tp_base_channel_reopened_with_requested (TpBaseChannel *chan, @@ -717,7 +717,7 @@ tp_base_channel_is_destroyed (TpBaseChannel *chan) * Returns: %TRUE if tp_base_channel_reopened() or * tp_base_channel_reopened_with_requested() have been called. * - * Since: UNRELEASED + * Since: 0.19.7 */ gboolean tp_base_channel_is_respawning (TpBaseChannel *chan) diff --git a/telepathy-glib/base-channel.h b/telepathy-glib/base-channel.h index 3962af397..0e5b0066c 100644 --- a/telepathy-glib/base-channel.h +++ b/telepathy-glib/base-channel.h @@ -81,9 +81,9 @@ void tp_base_channel_register (TpBaseChannel *chan); void tp_base_channel_close (TpBaseChannel *chan); void tp_base_channel_destroyed (TpBaseChannel *chan); void tp_base_channel_reopened (TpBaseChannel *chan, TpHandle initiator); -_TP_AVAILABLE_IN_UNRELEASED +_TP_AVAILABLE_IN_0_20 void tp_base_channel_disappear (TpBaseChannel *chan); -_TP_AVAILABLE_IN_UNRELEASED +_TP_AVAILABLE_IN_0_20 void tp_base_channel_reopened_with_requested (TpBaseChannel *chan, gboolean requested, TpHandle initiator); @@ -96,7 +96,7 @@ TpHandle tp_base_channel_get_initiator (TpBaseChannel *chan); gboolean tp_base_channel_is_requested (TpBaseChannel *chan); gboolean tp_base_channel_is_registered (TpBaseChannel *chan); gboolean tp_base_channel_is_destroyed (TpBaseChannel *chan); -_TP_AVAILABLE_IN_UNRELEASED +_TP_AVAILABLE_IN_0_20 gboolean tp_base_channel_is_respawning (TpBaseChannel *chan); GType tp_base_channel_get_type (void); diff --git a/telepathy-glib/versions/0.19.7.abi b/telepathy-glib/versions/0.19.7.abi new file mode 100644 index 000000000..46745eac1 --- /dev/null +++ b/telepathy-glib/versions/0.19.7.abi @@ -0,0 +1,7 @@ +Version: TELEPATHY_GLIB_0.19.7 +Extends: TELEPATHY_GLIB_0.19.6 +Release: 0.19.7 + +tp_base_channel_disappear +tp_base_channel_reopened_with_requested +tp_base_channel_is_respawning |