diff --git a/CHANGELOG.md b/CHANGELOG.md index 2add12984..11fa9d4e8 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 diff --git a/Cargo.toml b/Cargo.toml index e7b6219af..1d9978bbf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 "] description = "Types and traits for working with bytes" diff --git a/src/lib.rs b/src/lib.rs index 56b6ee605..59774a9a7 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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.