Skip to content

Commit 8ae3bb2

Browse files
committed
v0.5.3
1 parent 8733f74 commit 8ae3bb2

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# 0.5.3 (December 12, 2019)
2+
3+
### Added
4+
- `must_use` attributes to `split`, `split_off`, and `split_to` methods (#337).
5+
6+
### Fix
7+
- Potential freeing of a null pointer in `Bytes` when constructed with an empty `Vec<u8>` (#341, #342).
8+
- Calling `Bytes::truncate` with a size large than the length will no longer clear the `Bytes` (#333).
9+
110
# 0.5.2 (November 27, 2019)
211

312
### Added

Cargo.toml

+5-2
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,12 @@ name = "bytes"
66
# - Update CHANGELOG.md.
77
# - Update doc URL.
88
# - Create "v0.5.x" git tag.
9-
version = "0.5.2"
9+
version = "0.5.3"
1010
license = "MIT"
11-
authors = ["Carl Lerche <[email protected]>"]
11+
authors = [
12+
"Carl Lerche <[email protected]>",
13+
"Sean McArthur <[email protected]>",
14+
]
1215
description = "Types and traits for working with bytes"
1316
documentation = "https://docs.rs/bytes"
1417
repository = "https://github.com/tokio-rs/bytes"

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#![deny(warnings, missing_docs, missing_debug_implementations, rust_2018_idioms)]
2-
#![doc(html_root_url = "https://docs.rs/bytes/0.5.2")]
2+
#![doc(html_root_url = "https://docs.rs/bytes/0.5.3")]
33
#![no_std]
44

55
//! Provides abstractions for working with bytes.

0 commit comments

Comments
 (0)