From 3719b6563d659c9cd641acc23e6d5fa01b926ba4 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sun, 9 May 2021 20:30:55 -0700 Subject: [PATCH] v5.0.0 --- CHANGES.md | 21 ++++++++++++++++++--- lib/http/version.rb | 2 +- 2 files changed, 19 insertions(+), 4 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 64f24b1c..9477e78c 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,7 +1,19 @@ -## future is unwritten (master) +## 5.0.0 (2021-05-12) + +* [#656](https://github.com/httprb/http/pull/656) + Handle connection timeouts in `Features` + ([@semenyukdmitry]) + +* [#651](https://github.com/httprb/http/pull/651) + Replace `http-parser` with `llhttp` + ([@bryanp]) + +* [#647](https://github.com/httprb/http/pull/647) + Add support for `MKCALENDAR` HTTP verb + ([@meanphil]) * [#632](https://github.com/httprb/http/pull/632) - Respect the SSL context's verify_hostname value + Respect the SSL context's `verify_hostname` value ([@colemannugent]) * [#625](https://github.com/httprb/http/pull/625) @@ -9,7 +21,7 @@ ([@LukaszMaslej]) * [#599](https://github.com/httprb/http/pull/599) - Allow passing HTTP::FormData::{Multipart,UrlEncoded} object directly. + Allow passing `HTTP::FormData::{Multipart,UrlEncoded}` object directly. ([@ixti]) * [#593](https://github.com/httprb/http/pull/593) @@ -872,3 +884,6 @@ end [@antonvolkoff]: https://github.com/antonvolkoff [@LukaszMaslej]: https://github.com/LukaszMaslej [@colemannugent]: https://github.com/colemannugent +[@semenyukdmitry]: https://github.com/semenyukdmitry +[@bryanp]: https://github.com/bryanp +[@meanphil]: https://github.com/meanphil diff --git a/lib/http/version.rb b/lib/http/version.rb index 22cdb717..b54b11d1 100644 --- a/lib/http/version.rb +++ b/lib/http/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module HTTP - VERSION = "5.0.0.pre3" + VERSION = "5.0.0" end