Skip to content

Commit 008d3e5

Browse files
committed
v0.5.5
1 parent a3304e8 commit 008d3e5

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# 0.5.5 (June 18, 2020)
2+
3+
### Added
4+
- Allow using the `serde` feature in `no_std` environments (#385).
5+
6+
### Fix
7+
- Fix `BufMut::advance_mut` to panic if advanced passed the capacity (#354)..
8+
- Fix `BytesMut::freeze` ignoring amount previously `advance`d (#352).
9+
110
# 0.5.4 (January 23, 2020)
211

312
### Added

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ name = "bytes"
66
# - Update CHANGELOG.md.
77
# - Update doc URL.
88
# - Create "v0.5.x" git tag.
9-
version = "0.5.4"
9+
version = "0.5.5"
1010
license = "MIT"
1111
authors = [
1212
"Carl Lerche <[email protected]>",

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
no_crate_inject,
99
attr(deny(warnings, rust_2018_idioms), allow(dead_code, unused_variables))
1010
))]
11-
#![doc(html_root_url = "https://docs.rs/bytes/0.5.4")]
11+
#![doc(html_root_url = "https://docs.rs/bytes/0.5.5")]
1212
#![no_std]
1313

1414
//! Provides abstractions for working with bytes.

0 commit comments

Comments
 (0)