File tree 3 files changed +8
-5
lines changed
3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change
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
+
1
8
# 0.2.10 (November 10, 2023)
2
9
3
10
* Fix parsing of ` Authority ` to handle square brackets in incorrect order.
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ name = "http"
4
4
# - Update html_root_url in lib.rs.
5
5
# - Update CHANGELOG.md.
6
6
# - Create git tag
7
- version = " 1.0.0-dev "
7
+ version = " 1.0.0"
8
8
readme = " README.md"
9
9
documentation = " https://docs.rs/http"
10
10
repository = " https://github.com/hyperium/http"
@@ -23,8 +23,6 @@ edition = "2018"
23
23
# When updating this value, don't forget to also adjust the GitHub Actions config.
24
24
rust-version = " 1.49.0"
25
25
26
- publish = false
27
-
28
26
[workspace ]
29
27
members = [
30
28
" ." ,
Original file line number Diff line number Diff line change 1
- #![ doc( html_root_url = "https://docs.rs/http/0.2.10" ) ]
2
-
3
1
//! A general purpose library of common HTTP types
4
2
//!
5
3
//! This crate is a general purpose library for common types found when working
You can’t perform that action at this time.
0 commit comments