This commit is contained in:
Sean McArthur
2019-12-12 12:00:21 -08:00
parent 8733f74d59
commit 8ae3bb2104
3 changed files with 15 additions and 3 deletions
+9
View File
@@ -1,3 +1,12 @@
# 0.5.3 (December 12, 2019)
### Added
- `must_use` attributes to `split`, `split_off`, and `split_to` methods (#337).
### Fix
- Potential freeing of a null pointer in `Bytes` when constructed with an empty `Vec<u8>` (#341, #342).
- Calling `Bytes::truncate` with a size large than the length will no longer clear the `Bytes` (#333).
# 0.5.2 (November 27, 2019)
### Added
+5 -2
View File
@@ -6,9 +6,12 @@ name = "bytes"
# - Update CHANGELOG.md.
# - Update doc URL.
# - Create "v0.5.x" git tag.
version = "0.5.2"
version = "0.5.3"
license = "MIT"
authors = ["Carl Lerche <[email protected]>"]
authors = [
"Carl Lerche <[email protected]>",
"Sean McArthur <[email protected]>",
]
description = "Types and traits for working with bytes"
documentation = "https://docs.rs/bytes"
repository = "https://github.com/tokio-rs/bytes"
+1 -1
View File
@@ -1,5 +1,5 @@
#![deny(warnings, missing_docs, missing_debug_implementations, rust_2018_idioms)]
#![doc(html_root_url = "https://docs.rs/bytes/0.5.2")]
#![doc(html_root_url = "https://docs.rs/bytes/0.5.3")]
#![no_std]
//! Provides abstractions for working with bytes.