diff --git a/tokio-macros/CHANGELOG.md b/tokio-macros/CHANGELOG.md index 6ee535a69d3..9527189778a 100644 --- a/tokio-macros/CHANGELOG.md +++ b/tokio-macros/CHANGELOG.md @@ -1,3 +1,6 @@ +# 0.2.2 (January 7, 2019) +- General refactoring and inclusion of additional runtime options (#2022 and #2038) + # 0.2.1 (December 18, 2019) ### Fixes diff --git a/tokio-macros/Cargo.toml b/tokio-macros/Cargo.toml index 597e913ccac..8d74e9d5d15 100644 --- a/tokio-macros/Cargo.toml +++ b/tokio-macros/Cargo.toml @@ -7,13 +7,13 @@ name = "tokio-macros" # - Cargo.toml # - Update CHANGELOG.md. # - Create "v0.1.x" git tag. -version = "0.2.1" +version = "0.2.2" 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.1/tokio_macros" +documentation = "https://docs.rs/tokio-macros/0.2.2/tokio_macros" description = """ Tokio's proc macros. """ diff --git a/tokio-macros/src/lib.rs b/tokio-macros/src/lib.rs index bbcc3608951..ce38fabe54e 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.1")] +#![doc(html_root_url = "https://docs.rs/tokio-macros/0.2.2")] #![allow(clippy::needless_doctest_main)] #![warn( missing_debug_implementations, diff --git a/tokio/Cargo.toml b/tokio/Cargo.toml index c7da23caae6..00420e30e05 100644 --- a/tokio/Cargo.toml +++ b/tokio/Cargo.toml @@ -92,7 +92,7 @@ uds = ["io-driver", "mio-uds", "libc"] [dependencies] -tokio-macros = { version = "0.2.0", path = "../tokio-macros", optional = true } +tokio-macros = { version = "0.2.2", path = "../tokio-macros", optional = true } bytes = "0.5.0" pin-project-lite = "0.1.1"