From 6ccefb77e273d8bfda72d638404c797fc8d5f2d4 Mon Sep 17 00:00:00 2001 From: Carl Lerche Date: Fri, 7 Aug 2020 20:27:53 -0700 Subject: chore: prepare for v0.3 breaking changes (#2747) Bug fixes will be applied to the v0.2.x branch. --- tokio-macros/Cargo.toml | 9 +++++---- tokio-macros/src/lib.rs | 2 +- 2 files changed, 6 insertions(+), 5 deletions(-) (limited to 'tokio-macros') diff --git a/tokio-macros/Cargo.toml b/tokio-macros/Cargo.toml index 27092128..021a98c3 100644 --- a/tokio-macros/Cargo.toml +++ b/tokio-macros/Cargo.toml @@ -6,18 +6,19 @@ name = "tokio-macros" # - Update doc url # - Cargo.toml # - Update CHANGELOG.md. -# - Create "v0.1.x" git tag. -version = "0.2.5" +# - Create "v0.3.x" git tag. +version = "0.3.0" edition = "2018" authors = ["Tokio Contributors "] license = "MIT" repository = "https://github.com/tokio-rs/tokio" homepage = "https://tokio.rs" -documentation = "https://docs.rs/tokio-macros/0.2.5/tokio_macros" +documentation = "https://docs.rs/tokio-macros/0.3.0/tokio_macros" description = """ Tokio's proc macros. """ categories = ["asynchronous"] +publish = false [lib] proc-macro = true @@ -30,7 +31,7 @@ quote = "1" syn = { version = "1.0.3", features = ["full"] } [dev-dependencies] -tokio = { version = "0.2.0", path = "../tokio", features = ["full"] } +tokio = { version = "0.3.0", path = "../tokio", features = ["full"] } [package.metadata.docs.rs] all-features = true diff --git a/tokio-macros/src/lib.rs b/tokio-macros/src/lib.rs index 1fd445d8..2bb0c210 100644 --- a/tokio-macros/src/lib.rs +++ b/tokio-macros/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/tokio-macros/0.2.5")] +#![doc(html_root_url = "https://docs.rs/tokio-macros/0.3.0")] #![allow(clippy::needless_doctest_main)] #![warn( missing_debug_implementations, -- cgit v1.2.3