diff options
author | Olivier CrĂȘte <olivier.crete@collabora.com> | 2014-03-06 12:17:05 -0500 |
---|---|---|
committer | Olivier CrĂȘte <olivier.crete@collabora.com> | 2014-03-06 12:17:58 -0500 |
commit | 67851545b72518743469e6e862d9f191a0697105 (patch) | |
tree | 6f9517a30ab22c5c3ef901f0fbe7c5ea08e74f0f | |
parent | 0ca4ba4c593df911bb491dfdce4ccccd77118167 (diff) |
version 0.6.1telepathy-farstream-0.6.1
-rw-r--r-- | NEWS | 8 | ||||
-rw-r--r-- | configure.ac | 6 |
2 files changed, 11 insertions, 3 deletions
@@ -1,3 +1,11 @@ +telepathy-farstream 0.6.1 (6 Mar 2014) +======================================= + +- Fix build with newer telepathy-glib branches +- Fix build with automake 1.13 +- Improve configure.ac with AS_IF +- Fix calls with standard ICE-UDP (against Gajim) + telepathy-farstream 0.6.0 (25 Sep 2012) ======================================= diff --git a/configure.ac b/configure.ac index 5552241..caa66d5 100644 --- a/configure.ac +++ b/configure.ac @@ -9,8 +9,8 @@ AC_PREREQ([2.59]) m4_define([tp_farstream_major_version], [0]) m4_define([tp_farstream_minor_version], [6]) -m4_define([tp_farstream_micro_version], [0]) -m4_define([tp_farstream_nano_version], [1]) +m4_define([tp_farstream_micro_version], [1]) +m4_define([tp_farstream_nano_version], [0]) dnl CURRENT, REVISION, AGE dnl - library source changed -> increment REVISION @@ -18,7 +18,7 @@ dnl - interfaces added/removed/changed -> increment CURRENT, REVISION = 0 dnl - interfaces added -> increment AGE dnl - interfaces removed -> AGE = 0 m4_define([tp_farstream_lt_current], [3]) -m4_define([tp_farstream_lt_revision], [0]) +m4_define([tp_farstream_lt_revision], [1]) m4_define([tp_farstream_lt_age], [0]) |