mirror of
https://github.com/tokio-rs/bytes.git
synced 2026-08-21 00:00:12 +02:00
v0.5.5
This commit is contained in:
@@ -1,3 +1,12 @@
|
|||||||
|
# 0.5.5 (June 18, 2020)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- Allow using the `serde` feature in `no_std` environments (#385).
|
||||||
|
|
||||||
|
### Fix
|
||||||
|
- Fix `BufMut::advance_mut` to panic if advanced passed the capacity (#354)..
|
||||||
|
- Fix `BytesMut::freeze` ignoring amount previously `advance`d (#352).
|
||||||
|
|
||||||
# 0.5.4 (January 23, 2020)
|
# 0.5.4 (January 23, 2020)
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|||||||
+1
-1
@@ -6,7 +6,7 @@ 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.4"
|
version = "0.5.5"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
authors = [
|
authors = [
|
||||||
"Carl Lerche <[email protected]>",
|
"Carl Lerche <[email protected]>",
|
||||||
|
|||||||
+1
-1
@@ -8,7 +8,7 @@
|
|||||||
no_crate_inject,
|
no_crate_inject,
|
||||||
attr(deny(warnings, rust_2018_idioms), allow(dead_code, unused_variables))
|
attr(deny(warnings, rust_2018_idioms), allow(dead_code, unused_variables))
|
||||||
))]
|
))]
|
||||||
#![doc(html_root_url = "https://docs.rs/bytes/0.5.4")]
|
#![doc(html_root_url = "https://docs.rs/bytes/0.5.5")]
|
||||||
#![no_std]
|
#![no_std]
|
||||||
|
|
||||||
//! Provides abstractions for working with bytes.
|
//! Provides abstractions for working with bytes.
|
||||||
|
|||||||
Reference in New Issue
Block a user