Skip to content

Commit

Permalink
v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
seanmonstar committed Nov 15, 2023
1 parent c51f40f commit 1c06623
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,10 @@
# 1.0.0 (November 15, 2023)

- Implement `Clone` for `Request`, `Response`, and `Extensions`. This breaking change requires
that all extensions now implement `Clone`.
- Add a default-on `std` feature. Disabling it currently is not supported.
- Fix MIRI warnings in `HeaderMap::iter()`.

# 0.2.10 (November 10, 2023)

* Fix parsing of `Authority` to handle square brackets in incorrect order.
Expand Down
4 changes: 1 addition & 3 deletions Cargo.toml
Expand Up @@ -4,7 +4,7 @@ name = "http"
# - Update html_root_url in lib.rs.
# - Update CHANGELOG.md.
# - Create git tag
version = "1.0.0-dev"
version = "1.0.0"
readme = "README.md"
documentation = "https://docs.rs/http"
repository = "https://github.com/hyperium/http"
Expand All @@ -23,8 +23,6 @@ edition = "2018"
# When updating this value, don't forget to also adjust the GitHub Actions config.
rust-version = "1.49.0"

publish = false

[workspace]
members = [
".",
Expand Down
2 changes: 0 additions & 2 deletions src/lib.rs
@@ -1,5 +1,3 @@
#![doc(html_root_url = "https://docs.rs/http/0.2.10")]

//! A general purpose library of common HTTP types
//!
//! This crate is a general purpose library for common types found when working
Expand Down

0 comments on commit 1c06623

Please sign in to comment.