summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier CrĂȘte <olivier.crete@collabora.com>2020-10-20 20:45:24 -0400
committerOlivier CrĂȘte <olivier.crete@collabora.com>2020-10-20 20:45:24 -0400
commit55b71d47f2b427b3baa8812818ed3f059acc748d (patch)
treeedf5a222b0c92a0337620aed9fe1c52294342073
parent306d471ae37ccf780ce3eed8b1acae685ba24830 (diff)
version 0.1.180.1.18
-rw-r--r--NEWS15
-rw-r--r--meson.build4
2 files changed, 17 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index a44a2fc..47cc91c 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,18 @@
+libnice 0.1.18 (2020-10-20)
+===========================
+Remove the autotools build system, now only meson is available
+On Windows, use crypto library instead of CryptGenRandom() which is deprecated
+On Windows, use GetBestInterfaceEx() for UWP compatibility
+On Windows, fix the listing of interfaces to use the correct APIs
+On Windows, implement ignoring interfaces
+Accept receiving messages in multiple steps over TCP
+Accept duplicated ports as last option instead of spinning forever
+Use sendmmsg if possible to send multiple packets in one call
+Fail gathering if no port is available
+Hide the implementation of NiceCandidate, this hides some parts that were previously visible
+Enable TURN server connects where both TCP and UDP use the same port number
+Don't count rejected STUN messages as keepalive packets
+
libnice 0.1.17 (2020-05-22)
===========================
Add API to retrieve the underlying BSD sockets
diff --git a/meson.build b/meson.build
index 9bac451..8cbc178 100644
--- a/meson.build
+++ b/meson.build
@@ -1,5 +1,5 @@
project('libnice', 'c',
- version: '0.1.17.1',
+ version: '0.1.18',
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.10.0'
+libversion = '10.11.0'
glib_req = '>= 2.54'
gnutls_req = '>= 2.12.0'