Skip to content

Commit

Permalink
Bump version to 2.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tjarratt committed May 4, 2014
1 parent 803c5e9 commit 6bd65bb
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
12 changes: 10 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
# 2.5.0 (2014-05-03)

* Feature: [#566](https://github.com/savonrb/savon/pull/566) Allow specifying HTTPI adapter per client.

```ruby
curb_client = Savon.client(wsdl: "http://example.com/service.wsdl", adapter: :curb)
http_client = Savon.client(wsdl: "http://example.com/service.wsdl", adapter: :httpclient)
```

## 2.4.0 (2014-03-31)

* Logging is off by default. To enable this behavior, set the :log option to true

``` ruby
client = Savon.client(wsdl: "http://example.com/service.wsdl")
client.options[:log] = true
client = Savon.client(wsdl: "http://example.com/service.wsdl", log: true)
```

### 2.3.2 (2013-12-09)
Expand Down
2 changes: 1 addition & 1 deletion lib/savon/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Savon
VERSION = '2.4.0'
VERSION = '2.5.0'
end

0 comments on commit 6bd65bb

Please sign in to comment.