From 422048eb24b4f5bbe5460dfb5d9b05ec7584cee6 Mon Sep 17 00:00:00 2001 From: Carl Lerche Date: Fri, 16 Oct 2020 11:49:27 -0700 Subject: [PATCH] prepare for 0.6 work (#428) --- CHANGELOG.md | 4 ++++ Cargo.toml | 7 ++++--- src/lib.rs | 2 +- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1b821da..6a9fa20 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.6.0 (unreleased) + + + # 0.5.6 (July 13, 2020) - Improve `BytesMut` to reuse buffer when fully `advance`d. diff --git a/Cargo.toml b/Cargo.toml index bcb8f17..bb928de 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,20 +5,21 @@ name = "bytes" # - Update html_root_url. # - Update CHANGELOG.md. # - Update doc URL. -# - Create "v0.5.x" git tag. -version = "0.5.6" +# - Create "v0.6.x" git tag. +version = "0.6.0" license = "MIT" authors = [ "Carl Lerche ", "Sean McArthur ", ] description = "Types and traits for working with bytes" -documentation = "https://docs.rs/bytes" +documentation = "https://docs.rs/bytes/0.6.0/bytes/" repository = "https://github.com/tokio-rs/bytes" readme = "README.md" keywords = ["buffers", "zero-copy", "io"] categories = ["network-programming", "data-structures"] edition = "2018" +publish = false [features] default = ["std"] diff --git a/src/lib.rs b/src/lib.rs index e375c01..cfa626a 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.6")] +#![doc(html_root_url = "https://docs.rs/bytes/0.6.0")] #![no_std] //! Provides abstractions for working with bytes.