From 483b03f50e2f4decd1bf7bb2bb9305f1db6a745e Mon Sep 17 00:00:00 2001 From: Youness Alaoui Date: Thu, 20 Jan 2011 20:16:49 -0500 Subject: [PATCH] Version 0.1.0 --- NEWS | 12 ++++++++++++ configure.ac | 8 ++++---- 2 files changed, 16 insertions(+), 4 deletions(-) diff --git a/NEWS b/NEWS index bb8acf3..073cb72 100644 --- a/NEWS +++ b/NEWS @@ -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) -- 2.11.4.GIT