summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYouness Alaoui <youness.alaoui@collabora.co.uk>2009-06-19 18:37:52 -0400
committerYouness Alaoui <youness.alaoui@collabora.co.uk>2009-06-19 18:37:52 -0400
commite10d08e029f554b848872ed860c89e6b48f4133d (patch)
tree5899333dd100aefc6087dd7aac330e3127917eac
parente8d63184287806886c45ae5cbc7e4631aaa90516 (diff)
downloadlibnice-e10d08e029f554b848872ed860c89e6b48f4133d.tar.gz
version 0.0.80.0.8
-rw-r--r--NEWS8
-rw-r--r--configure.ac6
2 files changed, 11 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index fcd2fe2..ff872f0 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,11 @@
+libnice 0.0.8 (2009-06-19)
+===========================
+
+Remove deprecated g_strcasecmp call
+Use addr instead of base_addr on assigning remote peer-reflexive candidates (fixes crash)
+Use a global mutex and g_source_is_destroyed to avoid race conditions (fixes crashes)
+Unlock the mutex before calling the recv callback
+
libnice 0.0.7 (2009-06-11)
===========================
diff --git a/configure.ac b/configure.ac
index c69df99..fe66eb5 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.7.1)
-LIBNICE_RELEASE="no"
+AC_INIT(libnice, 0.0.8)
+LIBNICE_RELEASE="yes"
AC_CONFIG_SRCDIR([agent/agent.c])
AC_CONFIG_HEADER([config.h])
@@ -34,7 +34,7 @@ AC_CONFIG_FILES([
# If there was an incompatible interface change:
# Increment CURRENT. Set AGE and REVISION to 0
LIBNICE_CURRENT=4
-LIBNICE_REVISION=1
+LIBNICE_REVISION=2
LIBNICE_AGE=4
LIBNICE_LIBVERSION=${LIBNICE_CURRENT}:${LIBNICE_REVISION}:${LIBNICE_AGE}
LIBNICE_LT_LDFLAGS="-version-info ${LIBNICE_LIBVERSION}"