summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier CrĂȘte <olivier.crete@collabora.com>2017-04-03 14:28:22 -0400
committerOlivier CrĂȘte <olivier.crete@collabora.com>2017-04-03 14:28:22 -0400
commit6bfea0d063fb358a44e8800eae314520a2babd61 (patch)
tree5687737f47a03cd4e6cb105cda87cb94912c8fe1
parent1345263b10ae318570c4de74b7bf6a508dc02d9f (diff)
downloadlibnice-6bfea0d063fb358a44e8800eae314520a2babd61.tar.gz
Version 0.1.140.1.14
-rw-r--r--NEWS9
-rw-r--r--README7
-rw-r--r--agent/agent.c2
-rw-r--r--agent/component.c6
-rw-r--r--configure.ac10
-rw-r--r--docs/reference/libnice/libnice-docs.xml4
-rw-r--r--socket/socket.h2
7 files changed, 27 insertions, 13 deletions
diff --git a/NEWS b/NEWS
index 087bbf7..04f841a 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,12 @@
+libnice 0.1.14 (2017-04-03)
+===========================
+Improved RFC compliance
+Split verbose logs into a separate option
+Numerous bug fixes
+Use GnuTLS for hash functions
+Implement NewReno in PseudoTCP
+Requires GLib 2.44 GnuTLS 2.12
+
libnice 0.1.13 (2015-04-28)
===========================
Fix build on non-Windows platforms that don't have getifaddrs()
diff --git a/README b/README
index 3d89ac4..3bececd 100644
--- a/README
+++ b/README
@@ -5,7 +5,7 @@ Nice: GLib ICE library
Copyright
---------
- (C) 2006-2011 Collabora Ltd.
+ (C) 2006-2017 Collabora Ltd.
(C) 2006-2011 Nokia Corporation
License
@@ -18,9 +18,10 @@ Requirements
glib >= 2.44
pkg-config
+ gnutls >= 2.12.0
gupnp-igd >= 0.1.2 (optional)
gstreamer-0.10 >= 0.10.0 (optional)
- gnutls >= 2.12.0
+ gstreamer-1.0 (optional)
Build instructions
------------------
@@ -51,7 +52,7 @@ Relevant standards
These standards are relevant to nice's current implementation.
-ICE draft 15
+ICE RFC 5245
http://tools.ietf.org/html/rfc5245
STUN
http://tools.ietf.org/html/rfc3489
diff --git a/agent/agent.c b/agent/agent.c
index 58e4a11..555fd16 100644
--- a/agent/agent.c
+++ b/agent/agent.c
@@ -698,7 +698,7 @@ nice_agent_class_init (NiceAgentClass *klass)
* local candidates are available before relay servers have been set
* with nice_agent_set_relay_info().
*
- * Since: UNRELEASED
+ * Since: 0.1.14
*/
g_object_class_install_property (gobject_class, PROP_FORCE_RELAY,
g_param_spec_boolean (
diff --git a/agent/component.c b/agent/component.c
index d38d3e5..32f7463 100644
--- a/agent/component.c
+++ b/agent/component.c
@@ -950,7 +950,7 @@ nice_component_class_init (NiceComponentClass *klass)
*
* The unique numeric ID of the component.
*
- * Since: UNRELEASED
+ * Since: 0.1.14
*/
g_object_class_install_property (object_class, PROP_ID,
g_param_spec_uint (
@@ -965,7 +965,7 @@ nice_component_class_init (NiceComponentClass *klass)
*
* The #NiceAgent this component belongs to.
*
- * Since: UNRELEASED
+ * Since: 0.1.14
*/
g_object_class_install_property (object_class, PROP_AGENT,
g_param_spec_object (
@@ -980,7 +980,7 @@ nice_component_class_init (NiceComponentClass *klass)
*
* The #NiceStream this component belongs to.
*
- * Since: UNRELEASED
+ * Since: 0.1.14
*/
g_object_class_install_property (object_class, PROP_STREAM,
g_param_spec_object (
diff --git a/configure.ac b/configure.ac
index d65a211..5fabdb4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -5,8 +5,8 @@ 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.13.1])
-LIBNICE_RELEASE="no"
+AC_INIT([libnice],[0.1.14])
+LIBNICE_RELEASE="yes"
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=16
-LIBNICE_REVISION=2
-LIBNICE_AGE=6
+LIBNICE_CURRENT=17
+LIBNICE_REVISION=0
+LIBNICE_AGE=7
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/docs/reference/libnice/libnice-docs.xml b/docs/reference/libnice/libnice-docs.xml
index 3dfac27..53487bc 100644
--- a/docs/reference/libnice/libnice-docs.xml
+++ b/docs/reference/libnice/libnice-docs.xml
@@ -101,6 +101,10 @@
<title>Index of new symbols in 0.1.8</title>
<xi:include href="xml/api-index-0.1.8.xml"><xi:fallback/></xi:include>
</index>
+ <index role="0.1.14">
+ <title>Index of new symbols in 0.1.14</title>
+ <xi:include href="xml/api-index-0.1.14.xml"><xi:fallback/></xi:include>
+ </index>
<xi:include href="xml/annotation-glossary.xml"><xi:fallback /></xi:include>
</part>
</book>
diff --git a/socket/socket.h b/socket/socket.h
index fadcbc1..c4c287b 100644
--- a/socket/socket.h
+++ b/socket/socket.h
@@ -137,7 +137,7 @@ nice_socket_set_writable_callback (NiceSocket *sock,
* Returns: %TRUE if @sock is based on @other or if @sock and @other are
* the same socket, %FALSE otherwise.
*
- * Since: UNRELEASED
+ * Since: 0.1.14
*/
gboolean
nice_socket_is_based_on (NiceSocket *sock, NiceSocket *other);