Skip to content

Commit 1c06623

Browse files
committed
v1.0.0
1 parent c51f40f commit 1c06623

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# 1.0.0 (November 15, 2023)
2+
3+
- Implement `Clone` for `Request`, `Response`, and `Extensions`. This breaking change requires
4+
that all extensions now implement `Clone`.
5+
- Add a default-on `std` feature. Disabling it currently is not supported.
6+
- Fix MIRI warnings in `HeaderMap::iter()`.
7+
18
# 0.2.10 (November 10, 2023)
29

310
* Fix parsing of `Authority` to handle square brackets in incorrect order.

Cargo.toml

+1-3
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 = "1.0.0-dev"
7+
version = "1.0.0"
88
readme = "README.md"
99
documentation = "https://docs.rs/http"
1010
repository = "https://github.com/hyperium/http"
@@ -23,8 +23,6 @@ edition = "2018"
2323
# When updating this value, don't forget to also adjust the GitHub Actions config.
2424
rust-version = "1.49.0"
2525

26-
publish = false
27-
2826
[workspace]
2927
members = [
3028
".",

src/lib.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#![doc(html_root_url = "https://docs.rs/http/0.2.10")]
2-
31
//! A general purpose library of common HTTP types
42
//!
53
//! This crate is a general purpose library for common types found when working

0 commit comments

Comments
 (0)