summaryrefslogtreecommitdiffstats
path: root/tokio-macros
diff options
context:
space:
mode:
authorCarl Lerche <me@carllerche.com>2019-11-26 09:17:27 -0800
committerGitHub <noreply@github.com>2019-11-26 09:17:27 -0800
commita81e2722a43ff2748ac99c1a65cd50fd00274db9 (patch)
treef31ee7f176a2d7bbf9e9fd298082f99ec8048e0b /tokio-macros
parent4ddc4371709562d2bd1d0373f0555f7c31926e53 (diff)
chore: prepare v0.2.0 release (#1822)
Diffstat (limited to 'tokio-macros')
-rw-r--r--tokio-macros/CHANGELOG.md3
-rw-r--r--tokio-macros/Cargo.toml6
-rw-r--r--tokio-macros/src/lib.rs2
3 files changed, 7 insertions, 4 deletions
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 <team@tokio.rs>"]
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,