mirror of
https://github.com/tokio-rs/bytes.git
synced 2026-08-25 00:00:22 +02:00
v0.5.3
This commit is contained in:
@@ -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)
|
# 0.5.2 (November 27, 2019)
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|||||||
+5
-2
@@ -6,9 +6,12 @@ name = "bytes"
|
|||||||
# - Update CHANGELOG.md.
|
# - Update CHANGELOG.md.
|
||||||
# - Update doc URL.
|
# - Update doc URL.
|
||||||
# - Create "v0.5.x" git tag.
|
# - Create "v0.5.x" git tag.
|
||||||
version = "0.5.2"
|
version = "0.5.3"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
authors = ["Carl Lerche <[email protected]>"]
|
authors = [
|
||||||
|
"Carl Lerche <[email protected]>",
|
||||||
|
"Sean McArthur <[email protected]>",
|
||||||
|
]
|
||||||
description = "Types and traits for working with bytes"
|
description = "Types and traits for working with bytes"
|
||||||
documentation = "https://docs.rs/bytes"
|
documentation = "https://docs.rs/bytes"
|
||||||
repository = "https://github.com/tokio-rs/bytes"
|
repository = "https://github.com/tokio-rs/bytes"
|
||||||
|
|||||||
+1
-1
@@ -1,5 +1,5 @@
|
|||||||
#![deny(warnings, missing_docs, missing_debug_implementations, rust_2018_idioms)]
|
#![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]
|
#![no_std]
|
||||||
|
|
||||||
//! Provides abstractions for working with bytes.
|
//! Provides abstractions for working with bytes.
|
||||||
|
|||||||
Reference in New Issue
Block a user