Skip to content
This repository has been archived by the owner on Aug 14, 2020. It is now read-only.

Commit

Permalink
Version 1.4.0 released.
Browse files Browse the repository at this point in the history
  • Loading branch information
ibc committed Sep 15, 2013
1 parent c610d90 commit be868b9
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Expand Up @@ -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.
Expand All @@ -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)
--------------------------------------
Expand Down
4 changes: 4 additions & 0 deletions 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 <ibc@aliax.net> 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 <ibc@aliax.net> Thu, 16 May 2013 13:10:00 +0100
Expand Down
2 changes: 1 addition & 1 deletion debian/preinst
Expand Up @@ -7,7 +7,7 @@
set -e


OVERSIP_GEM_VERSION="1.3.8"
OVERSIP_GEM_VERSION="1.4.0"


install_gem() {
Expand Down
2 changes: 1 addition & 1 deletion lib/oversip/version.rb
Expand Up @@ -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"
Expand Down

0 comments on commit be868b9

Please sign in to comment.