summaryrefslogtreecommitdiffstats
path: root/tokio-macros
diff options
context:
space:
mode:
authorArtem Vorotnikov <artem@vorotnikov.me>2020-01-08 00:44:27 +0300
committerLucio Franco <luciofranco14@gmail.com>2020-01-07 16:44:27 -0500
commitffd4025fce3c2fc44c0a91e38823a21d76bb6711 (patch)
tree50f319d53acbe491db8b0287097f1e0b5c73bf69 /tokio-macros
parent8bf4696f316c55def02978a65a34726c9118bbb3 (diff)
chore: prepare tokio-macros v0.2.2 release (#2068)
Diffstat (limited to 'tokio-macros')
-rw-r--r--tokio-macros/CHANGELOG.md3
-rw-r--r--tokio-macros/Cargo.toml4
-rw-r--r--tokio-macros/src/lib.rs2
3 files changed, 6 insertions, 3 deletions
diff --git a/tokio-macros/CHANGELOG.md b/tokio-macros/CHANGELOG.md
index 6ee535a6..95271897 100644
--- a/tokio-macros/CHANGELOG.md
+++ b/tokio-macros/CHANGELOG.md
@@ -1,3 +1,6 @@
+# 0.2.2 (January 7, 2019)
+- General refactoring and inclusion of additional runtime options (#2022 and #2038)
+
# 0.2.1 (December 18, 2019)
### Fixes
diff --git a/tokio-macros/Cargo.toml b/tokio-macros/Cargo.toml
index 597e913c..8d74e9d5 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.1"
+version = "0.2.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.1/tokio_macros"
+documentation = "https://docs.rs/tokio-macros/0.2.2/tokio_macros"
description = """
Tokio's proc macros.
"""
diff --git a/tokio-macros/src/lib.rs b/tokio-macros/src/lib.rs
index bbcc3608..ce38fabe 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.1")]
+#![doc(html_root_url = "https://docs.rs/tokio-macros/0.2.2")]
#![allow(clippy::needless_doctest_main)]
#![warn(
missing_debug_implementations,