summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier CrĂȘte <olivier.crete@ocrete.ca>2023-01-06 13:29:33 -0500
committerOlivier CrĂȘte <olivier.crete@ocrete.ca>2023-01-06 13:32:20 -0500
commitca7e68f06ead448996da612b06eac5f2c5c5b713 (patch)
tree8faf800c0c9084d06435b54ebe05efe37c30910c
parent64c9a79cc5c93fb394132781cdfac1a1c33f9ba2 (diff)
downloadlibnice-ca7e68f06ead448996da612b06eac5f2c5c5b713.tar.gz
version 0.1.200.1.20
-rw-r--r--NEWS14
-rw-r--r--meson.build4
2 files changed, 16 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index f87d229..afeda3e 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,17 @@
+libnice 0.1.20 (2023-01-06)
+===========================
+Remove support for GStreamer 0.10 builds
+Add macro to check LIBNICE version
+Added utility function to get the STUN server from a candidate
+Support additional header in built-in HTT proxy client
+Add boxed type for NiceAddress for bindings
+Add API to get the interface index for a local address
+Explicitly bind to a specific interface when creating UDP sockets
+Limit the number of stored incoming checks based on a property
+Do asynchronous DNS resolution for STUN and TURN servers
+Add introspection friendly API to get an allocated string from a NiceCandidate
+Enable gst-full to link in a single element
+
libnice 0.1.19 (2022-05-03)
===========================
Allow incoming connchecks before remote candidates are set, allows for connection based on received bind requests
diff --git a/meson.build b/meson.build
index 9991b0f..53965a7 100644
--- a/meson.build
+++ b/meson.build
@@ -1,5 +1,5 @@
project('libnice', 'c',
- version: '0.1.19.1',
+ version: '0.1.20',
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.12.0'
+libversion = '10.13.0'
glib_req = '>= 2.54'
gnutls_req = '>= 2.12.0'