From 6fdb7391ce83dc71ccaeda6a54211ce723e5d9a5 Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Mon, 13 Jul 2020 17:00:00 -0700 Subject: [PATCH] v0.5.6 --- CHANGELOG.md | 7 +++++++ Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e6a0325e..1b821da42 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# 0.5.6 (July 13, 2020) + +- Improve `BytesMut` to reuse buffer when fully `advance`d. +- Mark `BytesMut::{as_mut, set_len}` with `#[inline]`. +- Relax synchronization when cloning in shared vtable of `Bytes`. +- Move `loom` to `dev-dependencies`. + # 0.5.5 (June 18, 2020) ### Added diff --git a/Cargo.toml b/Cargo.toml index 1b0a5c957..bcb8f1799 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.5" +version = "0.5.6" license = "MIT" authors = [ "Carl Lerche ", diff --git a/src/lib.rs b/src/lib.rs index 014720410..e375c01b1 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -3,7 +3,7 @@ no_crate_inject, attr(deny(warnings, rust_2018_idioms), allow(dead_code, unused_variables)) ))] -#![doc(html_root_url = "https://docs.rs/bytes/0.5.5")] +#![doc(html_root_url = "https://docs.rs/bytes/0.5.6")] #![no_std] //! Provides abstractions for working with bytes.