diff options
author | Olivier CrĂȘte <olivier.crete@collabora.com> | 2014-03-06 21:21:37 -0500 |
---|---|---|
committer | Olivier CrĂȘte <olivier.crete@collabora.com> | 2014-03-06 21:21:37 -0500 |
commit | a2801ef9793818a3bbc49cc1266c311a862153f8 (patch) | |
tree | 88c2d5ece9a7703027d82aef527cf7b866dbfca3 | |
parent | 90ceccbdd4d7ffa25d787b496837e97fab583b7d (diff) |
Version 0.1.50.1.5
-rw-r--r-- | NEWS | 16 | ||||
-rw-r--r-- | configure.ac | 6 |
2 files changed, 19 insertions, 3 deletions
@@ -1,3 +1,19 @@ +libnice 0.1.5 (2014-03-06) +========================== + + +API: nice_agent_recv() and nice_agent_recv_nonblocking() as an alternative to + the nice_agent_attach_recv() +API: nice_agent_recv_messages() and nice_agent_recv_messages_nonblocking() to + receive multiple messages at the same time +API: nice_agent_get_io_stream() to get a GIOStream in reliable mode +API: nice_agent_get_selected_socket() to extract the selected GSocket +Import Google's newer PseudoTCP code including window scaling +Improve PseudoTCP performance +Improve performance +Build fixes + + libnice 0.1.4 (2013-02-22) ========================== diff --git a/configure.ac b/configure.ac index d84f114..ab556c4 100644 --- a/configure.ac +++ b/configure.ac @@ -5,7 +5,7 @@ dnl Always compile with -Wall; if --enable-compile-warnings=error is passed, dnl also use -Werror. git and pre-releases default to -Werror dnl use a three digit version number for releases, and four for cvs/prerelease -AC_INIT([libnice],[0.1.4.1]) +AC_INIT([libnice],[0.1.5]) LIBNICE_RELEASE="no" AC_CANONICAL_TARGET @@ -39,9 +39,9 @@ AC_CONFIG_FILES([ # Increment CURRENT and AGE. Set REVISION to 0 # If there was an incompatible interface change: # Increment CURRENT. Set AGE and REVISION to 0 -LIBNICE_CURRENT=12 +LIBNICE_CURRENT=13 LIBNICE_REVISION=0 -LIBNICE_AGE=2 +LIBNICE_AGE=3 LIBNICE_LIBVERSION=${LIBNICE_CURRENT}:${LIBNICE_REVISION}:${LIBNICE_AGE} LIBNICE_LT_LDFLAGS="-version-info ${LIBNICE_LIBVERSION} -no-undefined" AC_SUBST(LIBNICE_LT_LDFLAGS) |