Skip to content

Commit dfc56e0

Browse files
committed
v0.2.3
1 parent 014f9c0 commit dfc56e0

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

CHANGELOG.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# 0.2.3 (unreleased)
2+
3+
* Broaden bytes dependency to include versions 0.5.z through 1.y. The rare
4+
broad dependency range is intended to allow users to avoid duplicates of the
5+
bytes crate during transition to bytes 1.0.0 in the broader ecosystem, while
6+
simultaneously avoiding a Semver incompatible release of _http_. ([#461])
7+
18
# 0.2.2 (December 14, 2020)
29

310
* Fix (potential double) panic of (`HeaderMap`) `OccupiedEntry::remove_entry` and
@@ -159,11 +166,11 @@
159166
[#414]: https://github.com/hyperium/http/pull/414
160167
[#432]: https://github.com/hyperium/http/issues/432
161168
[#433]: https://github.com/hyperium/http/pull/433
169+
[#435]: https://github.com/hyperium/http/issues/435
162170
[#438]: https://github.com/hyperium/http/pull/438
163171
[#443]: https://github.com/hyperium/http/pull/443
172+
[#445]: https://github.com/hyperium/http/pull/445
164173
[#446]: https://github.com/hyperium/http/issues/446
165174
[#449]: https://github.com/hyperium/http/pull/449
166175
[#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-
176+
[#461]: https://github.com/hyperium/http/pull/461

Cargo.toml

Lines changed: 1 addition & 1 deletion
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.2"
7+
version = "0.2.3"
88
readme = "README.md"
99
documentation = "https://docs.rs/http"
1010
repository = "https://github.com/hyperium/http"

src/lib.rs

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

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

0 commit comments

Comments
 (0)