summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS9
-rw-r--r--configure.ac8
2 files changed, 13 insertions, 4 deletions
diff --git a/NEWS b/NEWS
index 7a19978..be334a1 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,12 @@
+libnice 0.0.11 (2010-03-18)
+===========================
+
+Handle EAGAIN for UDP sockets
+Fix coverity warnings
+Fix a bug with TURN and Channel Bindings
+Add a reliable transport mode using libjingle's PseudoTcp implementation
+Various fixes
+
libnice 0.0.10 (2009-11-04)
===========================
diff --git a/configure.ac b/configure.ac
index f911215..23a19cf 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.10.1)
-LIBNICE_RELEASE="no"
+AC_INIT(libnice, 0.0.11)
+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=6
+LIBNICE_CURRENT=7
LIBNICE_REVISION=0
-LIBNICE_AGE=6
+LIBNICE_AGE=7
LIBNICE_LIBVERSION=${LIBNICE_CURRENT}:${LIBNICE_REVISION}:${LIBNICE_AGE}
LIBNICE_LT_LDFLAGS="-version-info ${LIBNICE_LIBVERSION}"
AC_SUBST(LIBNICE_LT_LDFLAGS)