From 597793488dbeac382280617e21e4a0f4d26ba0ec Mon Sep 17 00:00:00 2001 From: Carl Lerche Date: Tue, 8 Dec 2020 17:42:08 -0800 Subject: [PATCH] chore: prepare for v1.0.0 work --- Cargo.toml | 7 ++++--- src/lib.rs | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3d1d73df1..8013bff13 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.6.x" git tag. -version = "0.6.0" +# - Create "v1.0.x" git tag. +version = "1.0.0" license = "MIT" authors = [ "Carl Lerche ", "Sean McArthur ", ] description = "Types and traits for working with bytes" -documentation = "https://docs.rs/bytes/0.6.0/bytes/" +documentation = "https://docs.rs/bytes/1.0.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 cfa626a81..940d17d7e 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.6.0")] +#![doc(html_root_url = "https://docs.rs/bytes/1.0.0")] #![no_std] //! Provides abstractions for working with bytes.