diff --git a/http-body/CHANGELOG.md b/http-body/CHANGELOG.md index 59f6500..7c6b1c1 100644 --- a/http-body/CHANGELOG.md +++ b/http-body/CHANGELOG.md @@ -2,6 +2,10 @@ None. +# 1.0.0-rc.2 (Dec 28, 2022) + +- Change return type of `Frame::into_data()` and `Frame::into_trailers()` methods to return `Result` instead of `Option`. + # 1.0.0-rc1 (Oct 25, 2022) - Body trait forward-compat redesign (#67). diff --git a/http-body/Cargo.toml b/http-body/Cargo.toml index dfae044..ab0faf1 100644 --- a/http-body/Cargo.toml +++ b/http-body/Cargo.toml @@ -2,13 +2,12 @@ name = "http-body" # When releasing to crates.io: # - Remove path dependencies -# - Update html_root_url. # - Update doc url # - Cargo.toml # - README.md # - Update CHANGELOG.md. # - Create "http-body-x.y.z" git tag. -version = "1.0.0-rc1" +version = "1.0.0-rc.2" authors = [ "Carl Lerche ", "Lucio Franco ", diff --git a/http-body/src/lib.rs b/http-body/src/lib.rs index e3f197f..877d1c2 100644 --- a/http-body/src/lib.rs +++ b/http-body/src/lib.rs @@ -1,4 +1,3 @@ -#![doc(html_root_url = "https://docs.rs/http-body/1.0.0-rc1")] #![deny( missing_debug_implementations, missing_docs,