diff --git a/Changelog.md b/Changelog.md index 49bd11f..847f734 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,3 +1,11 @@ +## 0.17.1 + +* [Pass options to dynamic block headers](https://github.com/jnunemaker/httparty/pull/661) +* [Normalize urls with URI adapter to allow International Domain Names support](https://github.com/jnunemaker/httparty/pull/668) +* [Add max_retries support](https://github.com/jnunemaker/httparty/pull/648) +* [Add support for `Net::HTTP#write_timeout` method (Ruby 2.6.0)](https://github.com/jnunemaker/httparty/pull/660) +* [Minize gem size by removing test files](https://github.com/jnunemaker/httparty/pull/658) + ## 0.17.0 * [Fix encoding of streamed chunk](https://github.com/jnunemaker/httparty/pull/644) diff --git a/lib/httparty/version.rb b/lib/httparty/version.rb index 693df20..3a69e45 100644 --- a/lib/httparty/version.rb +++ b/lib/httparty/version.rb @@ -1,3 +1,3 @@ module HTTParty - VERSION = "0.17.0" + VERSION = "0.17.1" end