Skip to content

Broaden bytes dep to include version 0.5.z through 1.y #461

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# 0.2.3 (unreleased)

* Broaden bytes dependency to include versions 0.5.z through 1.y. The rare
broad dependency range is intended to allow users to avoid duplicates of the
bytes crate during transition to bytes 1.0.0 in the broader ecosystem, while
simultaneously avoiding a Semver incompatible release of _http_. ([#461])

# 0.2.2 (December 14, 2020)

* Fix (potential double) panic of (`HeaderMap`) `OccupiedEntry::remove_entry` and
Expand Down Expand Up @@ -159,11 +166,11 @@
[#414]: https://github.com/hyperium/http/pull/414
[#432]: https://github.com/hyperium/http/issues/432
[#433]: https://github.com/hyperium/http/pull/433
[#435]: https://github.com/hyperium/http/issues/435
[#438]: https://github.com/hyperium/http/pull/438
[#443]: https://github.com/hyperium/http/pull/443
[#445]: https://github.com/hyperium/http/pull/445
[#446]: https://github.com/hyperium/http/issues/446
[#449]: https://github.com/hyperium/http/pull/449
[#450]: https://github.com/hyperium/http/pull/450
[#435]: https://github.com/hyperium/http/issues/435
[#445]: https://github.com/hyperium/http/pull/445

[#461]: https://github.com/hyperium/http/pull/461
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name = "http"
# - Update html_root_url in lib.rs.
# - Update CHANGELOG.md.
# - Create git tag
version = "0.2.2"
version = "0.2.3"
readme = "README.md"
documentation = "https://docs.rs/http"
repository = "https://github.com/hyperium/http"
Expand All @@ -22,7 +22,7 @@ categories = ["web-programming"]
edition = "2018"

[dependencies]
bytes = "1"
bytes = ">=0.5.2, <2.0.0"
fnv = "1.0.5"
itoa = "0.4.1"

Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/http/0.2.2")]
#![doc(html_root_url = "https://docs.rs/http/0.2.3")]

//! A general purpose library of common HTTP types
//!
Expand Down