v0.2.0-alpha.3

This commit is contained in:
Sean McArthur
2019-10-01 11:38:10 -07:00
parent b420148e64
commit 579f778f8f
3 changed files with 7 additions and 3 deletions
+4
View File
@@ -1,3 +1,7 @@
# 0.2.0-alpha.3 (October 1, 2019)
- Fix `Body` to be object-safe.
# 0.2.0-alpha.2 (October 1, 2019)
- Add `next` and `trailers` combinator methods.
+2 -2
View File
@@ -8,11 +8,11 @@ name = "http-body"
# - README.md
# - Update CHANGELOG.md.
# - Create "v0.1.x" git tag.
version = "0.2.0-alpha.2"
version = "0.2.0-alpha.3"
authors = ["Carl Lerche <me@carllerche.com>"]
edition = "2018"
readme = "README.md"
documentation = "https://docs.rs/http-body/0.2.0-alpha.2/http-body"
documentation = "https://docs.rs/http-body/0.2.0-alpha.3/http-body"
repository = "https://github.com/hyperium/http-body"
homepage = "https://github.com/hyperium/http-body"
license = "MIT"
+1 -1
View File
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/http-body/0.2.0-alpha.2")]
#![doc(html_root_url = "https://docs.rs/http-body/0.2.0-alpha.3")]
#![deny(missing_debug_implementations, missing_docs, unreachable_pub)]
#![cfg_attr(test, deny(warnings))]