Skip to content

Commit

Permalink
Version 0.1.14
Browse files Browse the repository at this point in the history
  • Loading branch information
ocrete committed Apr 3, 2017
1 parent 1345263 commit 6bfea0d
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 13 deletions.
9 changes: 9 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -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()
Expand Down
7 changes: 4 additions & 3 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
------------------
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion agent/agent.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
Expand Down
6 changes: 3 additions & 3 deletions agent/component.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
Expand All @@ -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 (
Expand All @@ -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 (
Expand Down
10 changes: 5 additions & 5 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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)
Expand Down
4 changes: 4 additions & 0 deletions docs/reference/libnice/libnice-docs.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
2 changes: 1 addition & 1 deletion socket/socket.h
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 6bfea0d

Please sign in to comment.