This commit is contained in:
Sean McArthur
2019-11-27 12:35:28 -08:00
parent 5c1a59b5c0
commit 5012a86462
3 changed files with 7 additions and 2 deletions
+5
View File
@@ -1,3 +1,8 @@
# 0.5.2 (November 27, 2019)
### Added
- `Limit` methods `into_inner`, `get_ref`, `get_mut`, `limit`, and `set_limit` (#325).
# 0.5.1 (November 25, 2019)
### Fix
+1 -1
View File
@@ -6,7 +6,7 @@ name = "bytes"
# - Update CHANGELOG.md.
# - Update doc URL.
# - Create "v0.5.x" git tag.
version = "0.5.1"
version = "0.5.2"
license = "MIT"
authors = ["Carl Lerche <me@carllerche.com>"]
description = "Types and traits for working with 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.1")]
#![doc(html_root_url = "https://docs.rs/bytes/0.5.2")]
#![no_std]
//! Provides abstractions for working with bytes.