diff --git a/CHANGES.md b/CHANGES.md index 2224166b..25411e20 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,13 @@ +## 5.1.1 (2022-12-17) + +* [#731](https://github.com/httprb/http/pull/731) + Strip brackets from IPv6 addresses in `HTTP::URI`. + ([@jeraki]) + +* [#722](https://github.com/httprb/http/pull/722) + Add `on_redirect` callback. + ([@benubois]) + ## 5.1.0 (2022-06-17) * Drop ruby-2.5 support. @@ -988,3 +998,5 @@ end [@YuLeven]: https://github.com/YuLeven [@drwl]: https://github.com/drwl [@tkellogg]: https://github.com/tkellogg +[@jeraki]: https://github.com/jeraki +[@benubois]: https://github.com/benubois diff --git a/lib/http/version.rb b/lib/http/version.rb index 14d4fcdd..37dbd144 100644 --- a/lib/http/version.rb +++ b/lib/http/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module HTTP - VERSION = "5.1.0" + VERSION = "5.1.1" end