From 581c12d365cbb4267138dcaf97577165b05a08eb Mon Sep 17 00:00:00 2001 From: Alice Ryhl Date: Fri, 5 Feb 2021 20:16:01 +0100 Subject: [PATCH 1/2] chore: prepare tokio-macros 1.1.0 --- tokio-macros/CHANGELOG.md | 5 +++++ tokio-macros/Cargo.toml | 6 +++--- tokio-macros/src/lib.rs | 2 +- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/tokio-macros/CHANGELOG.md b/tokio-macros/CHANGELOG.md index 26ee5eaa93d..6760b1713c5 100644 --- a/tokio-macros/CHANGELOG.md +++ b/tokio-macros/CHANGELOG.md @@ -1,3 +1,7 @@ +# 1.1.0 (February 5, 2021) + +- add `start_paused` option to macros ([#3492]) + # 1.0.0 (December 23, 2020) - track `tokio` 1.0 release. @@ -55,3 +59,4 @@ [#2177]: https://github.com/tokio-rs/tokio/pull/2177 [#2225]: https://github.com/tokio-rs/tokio/pull/2225 [#3038]: https://github.com/tokio-rs/tokio/pull/3038 +[#3492]: https://github.com/tokio-rs/tokio/pull/3492 diff --git a/tokio-macros/Cargo.toml b/tokio-macros/Cargo.toml index fa2568c535d..989e86354fb 100644 --- a/tokio-macros/Cargo.toml +++ b/tokio-macros/Cargo.toml @@ -7,13 +7,13 @@ name = "tokio-macros" # - Cargo.toml # - Update CHANGELOG.md. # - Create "tokio-macros-1.0.x" git tag. -version = "1.0.0" +version = "1.1.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/1.0.0/tokio_macros" +documentation = "https://docs.rs/tokio-macros/1.1.0/tokio_macros" description = """ Tokio's proc macros. """ @@ -30,7 +30,7 @@ quote = "1" syn = { version = "1.0.3", features = ["full"] } [dev-dependencies] -tokio = { version = "1.0.0", path = "../tokio", features = ["full"] } +tokio = { version = "1.2.0", features = ["full"] } [package.metadata.docs.rs] all-features = true diff --git a/tokio-macros/src/lib.rs b/tokio-macros/src/lib.rs index 1c8e29282d4..5e41a5ed16e 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/1.0.0")] +#![doc(html_root_url = "https://docs.rs/tokio-macros/1.1.0")] #![allow(clippy::needless_doctest_main)] #![warn( missing_debug_implementations, From 2f13bf9c3d80510a10a31ecc6510fa7f66effc24 Mon Sep 17 00:00:00 2001 From: Alice Ryhl Date: Fri, 5 Feb 2021 21:34:33 +0100 Subject: [PATCH 2/2] Update tokio dev-dependency --- tokio-macros/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokio-macros/Cargo.toml b/tokio-macros/Cargo.toml index 989e86354fb..ea7b2dee1c5 100644 --- a/tokio-macros/Cargo.toml +++ b/tokio-macros/Cargo.toml @@ -30,7 +30,7 @@ quote = "1" syn = { version = "1.0.3", features = ["full"] } [dev-dependencies] -tokio = { version = "1.2.0", features = ["full"] } +tokio = { version = "1.0.0", path = "../tokio", features = ["full"] } [package.metadata.docs.rs] all-features = true