From be868b9479b13c01f1cca0e4af3287fe38f5f631 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?I=C3=B1aki=20Baz=20Castillo?= Date: Sun, 15 Sep 2013 16:12:27 +0200 Subject: [PATCH] Version 1.4.0 released. --- CHANGELOG.md | 7 +++++++ debian/changelog | 4 ++++ debian/preinst | 2 +- lib/oversip/version.rb | 2 +- 4 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d2873d..dbd7620 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ CHANGELOG Version devel (not yet released) -------------------------------------- + + +Version 1.4.0 (released in 2013-09-15) +-------------------------------------- + - [(7befa37)](https://github.com/versatica/OverSIP/commit/7befa378d535bb5822dc7260516eaae8158fb9f6) RFC 6228 (199 response) implemented in `Proxy#drop_response(response)`. The method now allows passing the `OverSIP::SIP::Response` instance to drop and, in case it is a [3456]XX response and the received request includes "Supported: 199" then a 199 response is sent upstream. - [(1159607)](https://github.com/versatica/OverSIP/commit/1159607ef524c8bba012fb19f60153d52b7d23f3) New `OverSIP::SIP::Request#ruri=(uri)` method which replaces the Request URI of the request by passing an `OverSIP::SIP::Uri` instance or a string. Also allow passing a URI as string to `UacRequest.initialize` and route based on it (if no `dst_host` param is given to the `Uac` instance routing such a request). New class methods `OverSIP::SIP::Uri.parse(string)` and `OverSIP::SIP::NameAddr.parse(string)` which generate instances of those classes. @@ -21,6 +26,8 @@ Version devel (not yet released) - [(31114a0)](https://github.com/versatica/OverSIP/commit/31114a091c9649574af0710f23e459f0bd488757) Added `OverSIP::SIP::Uri#clear_params()` which removes all the params from the URI. +- [(c610d90)](https://github.com/versatica/OverSIP/commit/c610d90b326174b37368f11b27d40c839d76de9d) Add `advertised_ipv4` and `advertised_ipv6` configuration options for running OverSIP in NAT'ed boxes. + Version 1.3.8 (released in 2013-05-16) -------------------------------------- diff --git a/debian/changelog b/debian/changelog index 63e8e13..e1bfe06 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,7 @@ +oversip (1.4.0) stable; urgency=low + * Package for OverSIP Ruby Gem 1.4.0. + -- Iñaki Baz Castillo Sun, 15 Sep 2013 16:10:00 +0100 + oversip (1.3.8) stable; urgency=low * Package for OverSIP Ruby Gem 1.3.8. -- Iñaki Baz Castillo Thu, 16 May 2013 13:10:00 +0100 diff --git a/debian/preinst b/debian/preinst index f41bcc6..097bdae 100644 --- a/debian/preinst +++ b/debian/preinst @@ -7,7 +7,7 @@ set -e -OVERSIP_GEM_VERSION="1.3.8" +OVERSIP_GEM_VERSION="1.4.0" install_gem() { diff --git a/lib/oversip/version.rb b/lib/oversip/version.rb index 8f811e3..8d7139b 100644 --- a/lib/oversip/version.rb +++ b/lib/oversip/version.rb @@ -6,7 +6,7 @@ module Version MAJOR = 1 MINOR = 4 TINY = 0 - DEVEL = "beta" # Set to nil for stable releases. + DEVEL = nil # Set to nil for stable releases. end PROGRAM_NAME = "OverSIP"