diff --git a/tokio-macros/CHANGELOG.md b/tokio-macros/CHANGELOG.md index 26ee5eaa9..6760b1713 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 fa2568c53..ea7b2dee1 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. """ diff --git a/tokio-macros/src/lib.rs b/tokio-macros/src/lib.rs index 1c8e29282..5e41a5ed1 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,