summaryrefslogtreecommitdiffstats
path: root/tokio-macros
diff options
context:
space:
mode:
authorCarl Lerche <me@carllerche.com>2020-02-27 10:18:01 -0800
committerGitHub <noreply@github.com>2020-02-27 10:18:01 -0800
commitc6fc1db6981733c8bfe90d979132b00cfc03b83b (patch)
tree2e1b079328bd8c2a5c756c28f7d994a2200d2506 /tokio-macros
parentd44ce338af6ef3cf666f5b3db6e8e0bf057e5490 (diff)
chore: prepare v0.2.12 release (#2278)
Also includes `tokio-macros` v0.2.5.
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 91955c7a..d9edc5d2 100644
--- a/tokio-macros/CHANGELOG.md
+++ b/tokio-macros/CHANGELOG.md
@@ -1,3 +1,8 @@
+# 0.2.5 (February 27, 2019)
+
+### Fixed
+- doc improvements (#2225).
+
# 0.2.4 (January 27, 2019)
### Fixed
diff --git a/tokio-macros/Cargo.toml b/tokio-macros/Cargo.toml
index 01bfdc28..27092128 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.4"
+version = "0.2.5"
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.3/tokio_macros"
+documentation = "https://docs.rs/tokio-macros/0.2.5/tokio_macros"
description = """
Tokio's proc macros.
"""
diff --git a/tokio-macros/src/lib.rs b/tokio-macros/src/lib.rs
index bc8f203a..9fdfb5bd 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.3")]
+#![doc(html_root_url = "https://docs.rs/tokio-macros/0.2.5")]
#![allow(clippy::needless_doctest_main)]
#![warn(
missing_debug_implementations,