diff options
author | 2019-11-27 12:35:28 -0800 | |
---|---|---|
committer | 2019-11-27 12:59:28 -0800 | |
commit | 98951ba26cccb0d613edf0286976aebf48257af0 (patch) | |
tree | 2bc54fda688127c9aa98b86dfb6e7893ed987806 | |
parent | 171cffa5053834d77f5bb653e55192977064ea96 (diff) | |
download | bytes-98951ba26cccb0d613edf0286976aebf48257af0.tar.gz bytes-98951ba26cccb0d613edf0286976aebf48257af0.tar.zst bytes-98951ba26cccb0d613edf0286976aebf48257af0.zip |
v0.5.2v0.5.2
-rw-r--r-- | CHANGELOG.md | 5 | ||||
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | src/lib.rs | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 2add129..11fa9d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -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,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. |