summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier CrĂȘte <olivier.crete@collabora.com>2018-12-27 15:23:09 -0600
committerOlivier CrĂȘte <olivier.crete@collabora.com>2018-12-27 16:46:26 -0600
commite25c3e5113c7b7002a78bcca2ecf058bbf7de6d4 (patch)
tree8aae8bd0a279d36fd6d8175b4df8c61d2bc79526
parent1b142226eb0292ca8fa565a9972d846d6dfc657c (diff)
Version 0.1.150.1.15
-rw-r--r--NEWS12
-rw-r--r--README2
-rw-r--r--configure.ac6
-rw-r--r--meson.build4
4 files changed, 18 insertions, 6 deletions
diff --git a/NEWS b/NEWS
index 04f841a..7c4b1b3 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,15 @@
+libnice 0.1.15 (2018-12-27)
+===========================
+Add support for Regular Nomination
+Removal of the global lock over all agents
+Add method to compare candidate targets
+Added optional Meson build system, future releases will remove autotools
+Renamed all members of PseudoTcpState enum (compile-time API change)
+Now drops all packets from addresses that have not been validated by an ICE check
+Multiple improvements to ICE interoperability
+Improved RFC compliance
+Improved OC2007 compatibility mode alternate-server support
+
libnice 0.1.14 (2017-04-03)
===========================
Improved RFC compliance
diff --git a/README b/README
index 1ccfc7c..cbd2dd0 100644
--- a/README
+++ b/README
@@ -5,7 +5,7 @@ Nice: GLib ICE library
Copyright
---------
- (C) 2006-2017 Collabora Ltd.
+ (C) 2006-2018 Collabora Ltd.
(C) 2006-2011 Nokia Corporation
License
diff --git a/configure.ac b/configure.ac
index 91aa946..a5da5a8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -5,7 +5,7 @@ dnl Always compile with -Wall; if --enable-compile-warnings=error is passed,
dnl also use -Werror. git and pre-releases default to -Werror
dnl use a three digit version number for releases, and four for cvs/prerelease
-AC_INIT([libnice],[0.1.14.1])
+AC_INIT([libnice],[0.1.15])
LIBNICE_RELEASE="no"
AC_CANONICAL_TARGET
@@ -39,9 +39,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=17
+LIBNICE_CURRENT=18
LIBNICE_REVISION=0
-LIBNICE_AGE=7
+LIBNICE_AGE=8
LIBNICE_LIBVERSION=${LIBNICE_CURRENT}:${LIBNICE_REVISION}:${LIBNICE_AGE}
LIBNICE_LT_LDFLAGS="-version-info ${LIBNICE_LIBVERSION} -no-undefined"
AC_SUBST(LIBNICE_LT_LDFLAGS)
diff --git a/meson.build b/meson.build
index 415626d..920b970 100644
--- a/meson.build
+++ b/meson.build
@@ -1,5 +1,5 @@
project('libnice', 'c',
- version: '0.1.14.1',
+ version: '0.1.15',
meson_version : '>= 0.49.0',
default_options : ['warning_level=1', 'buildtype=debugoptimized'])
@@ -16,7 +16,7 @@ endif
# maintain compatibility with the previous libtool versioning
soversion = 10
-libversion = '10.7.0'
+libversion = '10.8.0'
glib_req = '>= 2.48'
gnutls_req = '>= 2.12.0'