From 9600a080b18ea625d85658dd8fd2c7ccf7fe58ea Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Tue, 26 Nov 2019 17:15:57 -0500 Subject: [PATCH] chore: prepare v0.5.1 release (#322) --- CHANGELOG.md | 7 ++++++- Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ae9eff9..2add129 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,12 @@ +# 0.5.1 (November 25, 2019) + +### Fix +- Growth documentation for `BytesMut` (#321) + # 0.5.0 (November 25, 2019) ### Fix -- potential overflow in `copy_to_slice` +- Potential overflow in `copy_to_slice` ### Changed - Increased minimum supported Rust version to 1.39. diff --git a/Cargo.toml b/Cargo.toml index ebf1d5b..e7b6219 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.0" +version = "0.5.1" license = "MIT" authors = ["Carl Lerche "] description = "Types and traits for working with bytes" diff --git a/src/lib.rs b/src/lib.rs index 161717a..56b6ee6 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.0")] +#![doc(html_root_url = "https://docs.rs/bytes/0.5.1")] #![no_std] //! Provides abstractions for working with bytes.