Commit 483b03f5 authored by Youness Alaoui's avatar Youness Alaoui

Version 0.1.0

parent bed24e72
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) libnice 0.0.13 (2010-07-20)
========================== ==========================
......
...@@ -3,8 +3,8 @@ AC_PREREQ(2.59c) ...@@ -3,8 +3,8 @@ AC_PREREQ(2.59c)
dnl releases only do -Wall, cvs and prerelease does -Werror too 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 dnl use a three digit version number for releases, and four for cvs/prerelease
AC_INIT(libnice, 0.0.13.1) AC_INIT(libnice, 0.1.0)
LIBNICE_RELEASE="no" LIBNICE_RELEASE="yes"
AC_CONFIG_SRCDIR([agent/agent.c]) AC_CONFIG_SRCDIR([agent/agent.c])
AC_CONFIG_HEADER([config.h]) AC_CONFIG_HEADER([config.h])
...@@ -33,9 +33,9 @@ AC_CONFIG_FILES([ ...@@ -33,9 +33,9 @@ AC_CONFIG_FILES([
# Increment CURRENT and AGE. Set REVISION to 0 # Increment CURRENT and AGE. Set REVISION to 0
# If there was an incompatible interface change: # If there was an incompatible interface change:
# Increment CURRENT. Set AGE and REVISION to 0 # Increment CURRENT. Set AGE and REVISION to 0
LIBNICE_CURRENT=9 LIBNICE_CURRENT=10
LIBNICE_REVISION=0 LIBNICE_REVISION=0
LIBNICE_AGE=9 LIBNICE_AGE=0
LIBNICE_LIBVERSION=${LIBNICE_CURRENT}:${LIBNICE_REVISION}:${LIBNICE_AGE} LIBNICE_LIBVERSION=${LIBNICE_CURRENT}:${LIBNICE_REVISION}:${LIBNICE_AGE}
LIBNICE_LT_LDFLAGS="-version-info ${LIBNICE_LIBVERSION}" LIBNICE_LT_LDFLAGS="-version-info ${LIBNICE_LIBVERSION}"
AC_SUBST(LIBNICE_LT_LDFLAGS) AC_SUBST(LIBNICE_LT_LDFLAGS)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment