summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier CrĂȘte <olivier.crete@collabora.com>2023-01-07 10:51:15 -0500
committerOlivier CrĂȘte <olivier.crete@collabora.com>2023-01-07 10:51:15 -0500
commit3d9cae16a5094aadb1651572644cb5786a8b4e2d (patch)
tree5a4bc543c8637e2e8dc3cddf7df86cd32b953616
parent0fc589f3dc534ac514f48f98be42f1393d625aad (diff)
downloadlibnice-3d9cae16a5094aadb1651572644cb5786a8b4e2d.tar.gz
version 0.1.210.1.21latest-release
-rw-r--r--NEWS6
-rw-r--r--meson.build4
2 files changed, 7 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index afeda3e..7445daf 100644
--- a/NEWS
+++ b/NEWS
@@ -1,9 +1,13 @@
+libnice 0.1.21 (2023-01-07)
+===========================
+Only use `ifr_ifindex` if OS supports it, fixes build on iOS and FreeBSD
+
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
+Support additional header in built-in HTTP 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
diff --git a/meson.build b/meson.build
index ad7ae6e..60ca250 100644
--- a/meson.build
+++ b/meson.build
@@ -1,5 +1,5 @@
project('libnice', 'c',
- version: '0.1.20.1',
+ version: '0.1.21',
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.13.0'
+libversion = '10.13.1'
glib_req = '>= 2.54'
gnutls_req = '>= 2.12.0'