From 1746d1f20295dda08c789b5ed7976dbc3b0117eb Mon Sep 17 00:00:00 2001 From: Richard Aas Date: Mon, 20 Oct 2014 12:41:59 +0000 Subject: [PATCH] version 0.4.10 --- Makefile | 4 ++-- debian/changelog | 6 ++++++ docs/ChangeLog | 30 ++++++++++++++++++++++++++++++ rpm/re.spec | 2 +- src/dns/bsd/srv.c | 2 +- src/ice/util.c | 2 +- 6 files changed, 41 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 4626516..f157138 100644 --- a/Makefile +++ b/Makefile @@ -7,10 +7,10 @@ # Master version number VER_MAJOR := 0 VER_MINOR := 4 -VER_PATCH := 9 +VER_PATCH := 10 PROJECT := re -VERSION := 0.4.9 +VERSION := 0.4.10 MK := mk/re.mk diff --git a/debian/changelog b/debian/changelog index bd137b1..d254bcc 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +libre (0.4.10) unstable; urgency=low + + * version 0.4.10 + + -- Alfred E. Heggestad Sun, 19 Oct 2014 19:00:00 +0100 + libre (0.4.9) unstable; urgency=low * version 0.4.9 diff --git a/docs/ChangeLog b/docs/ChangeLog index 6116ea7..c98e88a 100644 --- a/docs/ChangeLog +++ b/docs/ChangeLog @@ -1,3 +1,33 @@ +2014-10-19 Alfred E. Heggestad + + * Version 0.4.10 + + * dns: added support for using multi-threaded libresolv + (thanks to Thomas Klausner) + (thanks to Dmitrij D. Czarkoff for testing on OpenBSD) + + * dtls: added support for sending DTLS over e.g. TURN + (this is done by adding 4 bytes of headroom in the packet) + + * ice: added ice_set_conf() + continue checklist if send fails (thanks to SnakE) + + * mbuf: added mbuf_shift() + + * sdp: added sdp_media_session_rattr() + added extmap decoding RFC 5285 (thanks to Jose Carlos Pujol) + + * sip: added struct sip_contact and related functions + + * sipevent: added support for URI in contact-user, used for GRUU + (thanks to Juha Heinanen) + + * sipreg: added "gruu" to list of Supported extensions + + * sipsess: added support for URI in contact-user, used for GRUU + (thanks to Juha Heinanen) + + 2014-06-18 Alfred E. Heggestad * Version 0.4.9 diff --git a/rpm/re.spec b/rpm/re.spec index d386c9a..b429230 100644 --- a/rpm/re.spec +++ b/rpm/re.spec @@ -1,5 +1,5 @@ %define name re -%define ver 0.4.9 +%define ver 0.4.10 %define rel 1 Summary: Generic library for real-time communications with async IO support diff --git a/src/dns/bsd/srv.c b/src/dns/bsd/srv.c index 564febe..d9fcb6b 100644 --- a/src/dns/bsd/srv.c +++ b/src/dns/bsd/srv.c @@ -1,5 +1,5 @@ /** - * @file netbsd/srv.c Get DNS Server IP using libresolv + * @file bsd/srv.c Get DNS Server IP using libresolv * * Copyright (C) 2010 Creytiv.com */ diff --git a/src/ice/util.c b/src/ice/util.c index a6e6cca..62b2b1b 100644 --- a/src/ice/util.c +++ b/src/ice/util.c @@ -1,5 +1,5 @@ /** - * @file util.c ICE Utilities + * @file ice/util.c ICE Utilities * * Copyright (C) 2010 Creytiv.com */