diff options
author | Youness Alaoui <youness.alaoui@collabora.co.uk> | 2011-01-20 20:16:49 -0500 |
---|---|---|
committer | Youness Alaoui <youness.alaoui@collabora.co.uk> | 2011-01-20 20:16:49 -0500 |
commit | 483b03f50e2f4decd1bf7bb2bb9305f1db6a745e (patch) | |
tree | ec82482460c9de29b2e258c7bdd6394cd6ebde03 | |
parent | bed24e7211a8e420f5640eb96bcc75b35b49a51c (diff) |
Version 0.1.00.1.0
-rw-r--r-- | NEWS | 12 | ||||
-rw-r--r-- | configure.ac | 8 |
2 files changed, 16 insertions, 4 deletions
@@ -1,3 +1,15 @@ +libnice 0.1.0 (2011-01-20) +========================== + +Added nice_candidate_copy to the public API +Make stun_timer timeouts configurable (Break API and ABI) +Add compatibility support for MSOC 2007 and MSOC 2007 R2 +Add MS-TURN support for MSOC +Added and completed TURN RFC 5766 support +Add a nice_agent_set_port_range API to force a component to use a specific port +Fix various bugs and memory leaks +Improve documentation + libnice 0.0.13 (2010-07-20) ========================== diff --git a/configure.ac b/configure.ac index a5ff0fc..432cc38 100644 --- a/configure.ac +++ b/configure.ac @@ -3,8 +3,8 @@ AC_PREREQ(2.59c) dnl releases only do -Wall, cvs and prerelease does -Werror too dnl use a three digit version number for releases, and four for cvs/prerelease -AC_INIT(libnice, 0.0.13.1) -LIBNICE_RELEASE="no" +AC_INIT(libnice, 0.1.0) +LIBNICE_RELEASE="yes" AC_CONFIG_SRCDIR([agent/agent.c]) AC_CONFIG_HEADER([config.h]) @@ -33,9 +33,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=9 +LIBNICE_CURRENT=10 LIBNICE_REVISION=0 -LIBNICE_AGE=9 +LIBNICE_AGE=0 LIBNICE_LIBVERSION=${LIBNICE_CURRENT}:${LIBNICE_REVISION}:${LIBNICE_AGE} LIBNICE_LT_LDFLAGS="-version-info ${LIBNICE_LIBVERSION}" AC_SUBST(LIBNICE_LT_LDFLAGS) |