summaryrefslogtreecommitdiffstats
path: root/tokio-macros
diff options
context:
space:
mode:
authorCarl Lerche <me@carllerche.com>2019-12-18 13:07:27 -0800
committerGitHub <noreply@github.com>2019-12-18 13:07:27 -0800
commit2d78cfe56ac14f384e26278951b52099d33bd797 (patch)
treee6d3abb88e1fa3d31fb0cf96b65e3dc04d587d13 /tokio-macros
parent4c645866ef4ea5b0ef8c7852281a09b2f96d969b (diff)
chore: prepare v0.2.5 release (#1984)
Also includes: - `tokio-macros` v0.2.1
Diffstat (limited to 'tokio-macros')
-rw-r--r--tokio-macros/CHANGELOG.md5
-rw-r--r--tokio-macros/Cargo.toml4
-rw-r--r--tokio-macros/src/lib.rs2
3 files changed, 8 insertions, 3 deletions
diff --git a/tokio-macros/CHANGELOG.md b/tokio-macros/CHANGELOG.md
index 48022e34..6ee535a6 100644
--- a/tokio-macros/CHANGELOG.md
+++ b/tokio-macros/CHANGELOG.md
@@ -1,3 +1,8 @@
+# 0.2.1 (December 18, 2019)
+
+### Fixes
+- inherit visibility when wrapping async fn (#1954).
+
# 0.2.0 (November 26, 2019)
- Initial release
diff --git a/tokio-macros/Cargo.toml b/tokio-macros/Cargo.toml
index 822da415..597e913c 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"
+version = "0.2.1"
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/tokio_macros"
+documentation = "https://docs.rs/tokio-macros/0.2.1/tokio_macros"
description = """
Tokio's proc macros.
"""
diff --git a/tokio-macros/src/lib.rs b/tokio-macros/src/lib.rs
index 9ec885bd..58092ed9 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")]
+#![doc(html_root_url = "https://docs.rs/tokio-macros/0.2.1")]
#![warn(
missing_debug_implementations,
missing_docs,