From a81e2722a43ff2748ac99c1a65cd50fd00274db9 Mon Sep 17 00:00:00 2001 From: Carl Lerche Date: Tue, 26 Nov 2019 09:17:27 -0800 Subject: chore: prepare v0.2.0 release (#1822) --- tokio-macros/CHANGELOG.md | 3 +++ tokio-macros/Cargo.toml | 6 +++--- tokio-macros/src/lib.rs | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) create mode 100644 tokio-macros/CHANGELOG.md (limited to 'tokio-macros') diff --git a/tokio-macros/CHANGELOG.md b/tokio-macros/CHANGELOG.md new file mode 100644 index 00000000..48022e34 --- /dev/null +++ b/tokio-macros/CHANGELOG.md @@ -0,0 +1,3 @@ +# 0.2.0 (November 26, 2019) + +- Initial release diff --git a/tokio-macros/Cargo.toml b/tokio-macros/Cargo.toml index 7e8d9513..822da415 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.0-alpha.6" +version = "0.2.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.0-alpha.6/tokio_macros" +documentation = "https://docs.rs/tokio-macros/0.2.0/tokio_macros" description = """ Tokio's proc macros. """ @@ -29,7 +29,7 @@ quote = "1" syn = { version = "1.0.3", features = ["full"] } [dev-dependencies] -tokio = { version = "=0.2.0-alpha.6", path = "../tokio", features = ["full"] } +tokio = { version = "0.2.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 65c8fdee..02e88cf7 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.0-alpha.6")] +#![doc(html_root_url = "https://docs.rs/tokio-macros/0.2.0")] #![warn( missing_debug_implementations, missing_docs, -- cgit v1.2.3