Skip to content

Commit 01d6a59

Browse files
authored
v0.2.2
1 parent 722df55 commit 01d6a59

File tree

3 files changed

+29
-3
lines changed

3 files changed

+29
-3
lines changed

CHANGELOG.md

+27-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
# 0.2.2 (December 14, 2020)
2+
3+
* Fix (potential double) panic of (`HeaderMap`) `OccupiedEntry::remove_entry` and
4+
`remove_entry_mult` when multiple values are present. ([#446], [#449] dekellum)
5+
* Safety audits of (priv) `ByteStr` and refactor of `Authority` ([#408], [#414] sbosnick)
6+
* Fix `HeaderName` to error instead of panic when input is too long ([#432] [#433] acfoltzer)
7+
* Allow `StatusCode` to encode values 100-999 without error. Use of the
8+
unclassified range 600-999 remains discouraged. ([#144], [#438], [#443] quininer dekellum)
9+
* Add `String` and `&String` fallible conversions to `PathAndQuery` ([#450] mkindahl)
10+
* Fix `Authority` (and `Uri`) to error instead of panic on unbalanced brackets
11+
([#435], [#445] aeryz)
12+
113
# 0.2.1 (March 25, 2020)
214

315
* Add `extensions_ref` and `extensions_mut` to `request::Builder` and `response::Builder`.
@@ -77,7 +89,7 @@
7789

7890
# 0.1.10 (August 8, 2018)
7991

80-
* impl HttpTryFrom<String> for HeaderValue (#236)
92+
* `impl HttpTryFrom<String>` for HeaderValue (#236)
8193

8294
# 0.1.9 (August 7, 2018)
8395

@@ -141,3 +153,17 @@
141153
# 0.1.0 (September 8, 2017)
142154

143155
* Initial release.
156+
157+
[#144]: https://github.com/hyperium/http/issues/144
158+
[#408]: https://github.com/hyperium/http/pull/408
159+
[#414]: https://github.com/hyperium/http/pull/414
160+
[#432]: https://github.com/hyperium/http/issues/432
161+
[#433]: https://github.com/hyperium/http/pull/433
162+
[#438]: https://github.com/hyperium/http/pull/438
163+
[#443]: https://github.com/hyperium/http/pull/443
164+
[#446]: https://github.com/hyperium/http/issues/446
165+
[#449]: https://github.com/hyperium/http/pull/449
166+
[#450]: https://github.com/hyperium/http/pull/450
167+
[#435]: https://github.com/hyperium/http/issues/435
168+
[#445]: https://github.com/hyperium/http/pull/445
169+

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name = "http"
44
# - Update html_root_url in lib.rs.
55
# - Update CHANGELOG.md.
66
# - Create git tag
7-
version = "0.2.1"
7+
version = "0.2.2"
88
readme = "README.md"
99
documentation = "https://docs.rs/http"
1010
repository = "https://github.com/hyperium/http"

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url = "https://docs.rs/http/0.2.1")]
1+
#![doc(html_root_url = "https://docs.rs/http/0.2.2")]
22

33
//! A general purpose library of common HTTP types
44
//!

0 commit comments

Comments
 (0)