summaryrefslogtreecommitdiffstats
path: root/tokio-macros
diff options
context:
space:
mode:
authorCarl Lerche <me@carllerche.com>2019-08-17 23:34:25 -0700
committerGitHub <noreply@github.com>2019-08-17 23:34:25 -0700
commit88b4ec84d7f0f1653e2a9bb3231076fc18a91cb3 (patch)
tree68aefffcac44c32a85791ae0ee15c38a1422e52b /tokio-macros
parent9f0daad5acafdd35c1577856e01021293d10849c (diff)
chore: prepare 0.2.0-alpha.2 release (#1465)
Diffstat (limited to 'tokio-macros')
-rw-r--r--tokio-macros/Cargo.toml6
-rw-r--r--tokio-macros/src/lib.rs2
2 files changed, 4 insertions, 4 deletions
diff --git a/tokio-macros/Cargo.toml b/tokio-macros/Cargo.toml
index 21e6ab9b..80096748 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.1"
+version = "0.2.0-alpha.2"
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.1/tokio_macros"
+documentation = "https://docs.rs/tokio-macros/0.2.0-alpha.2/tokio_macros"
description = """
Tokio's proc macros.
"""
@@ -29,4 +29,4 @@ quote = "1"
syn = { version = "1", features = ["full"] }
[dev-dependencies]
-tokio = { version = "=0.2.0-alpha.1", path = "../tokio", default-features = false, features = ["rt-full"] }
+tokio = { version = "0.2.0-alpha.1", path = "../tokio", default-features = false, features = ["rt-full"] }
diff --git a/tokio-macros/src/lib.rs b/tokio-macros/src/lib.rs
index a1024e56..7b72cca2 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.1")]
+#![doc(html_root_url = "https://docs.rs/tokio-macros/0.2.0-alpha.2")]
#![warn(
missing_debug_implementations,
missing_docs,