summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier CrĂȘte <olivier.crete@collabora.com>2022-05-03 17:32:23 -0400
committerOlivier CrĂȘte <olivier.crete@collabora.com>2022-05-03 17:32:23 -0400
commit64ef27e4847016568985f0f3c1fe4a4fb632e408 (patch)
treec65f59d215ae426ecd980004ee62efe73943fa3a
parentbf978f303869851a6f767dbbfb73c05c16f699bb (diff)
downloadlibnice-64ef27e4847016568985f0f3c1fe4a4fb632e408.tar.gz
version 0.1.190.1.19
-rw-r--r--NEWS13
-rw-r--r--meson.build4
2 files changed, 15 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 47cc91c..f87d229 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,16 @@
+libnice 0.1.19 (2022-05-03)
+===========================
+Allow incoming connchecks before remote candidates are set, allows for connection based on received bind requests
+Implement RFC 7675 for Consent Freshness
+Use a single server reflexive and local relay candidate, reduces useless duplicated local candidates
+Improved ICE restart implementation
+Use Windows native crypto API, removing the need for OpenSSL
+Add bytestream ICE-TCP and improve ICE-TCP
+Add API to know if a NiceAddress is link-local
+Add API to extact the relay address from a relayed NiceAddress
+Improve support for detection addresses on Android, iOS, macOS
+A number of bug fixes
+
libnice 0.1.18 (2020-10-20)
===========================
Remove the autotools build system, now only meson is available
diff --git a/meson.build b/meson.build
index 4ab2267..09cc08d 100644
--- a/meson.build
+++ b/meson.build
@@ -1,5 +1,5 @@
project('libnice', 'c',
- version: '0.1.18.1',
+ version: '0.1.19',
meson_version : '>= 0.52',
default_options : ['warning_level=1', 'buildtype=debugoptimized'])
@@ -20,7 +20,7 @@ endif
# B is the ABI age, change it on new APIs that don't break existing ones, changing it resets C to 0
# C is the revision, change on new updates that don't change APIs
soversion = 10
-libversion = '10.11.0'
+libversion = '10.12.0'
glib_req = '>= 2.54'
gnutls_req = '>= 2.12.0'