chore: prepare tokio-macros v0.2.2 release (#2068)

This commit is contained in:
Artem Vorotnikov
2020-01-07 16:44:27 -05:00
committed by Lucio Franco
parent 8bf4696f31
commit ffd4025fce
4 changed files with 7 additions and 4 deletions
+3
View File
@@ -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) # 0.2.1 (December 18, 2019)
### Fixes ### Fixes
+2 -2
View File
@@ -7,13 +7,13 @@ name = "tokio-macros"
# - Cargo.toml # - Cargo.toml
# - Update CHANGELOG.md. # - Update CHANGELOG.md.
# - Create "v0.1.x" git tag. # - Create "v0.1.x" git tag.
version = "0.2.1" version = "0.2.2"
edition = "2018" edition = "2018"
authors = ["Tokio Contributors <[email protected]>"] authors = ["Tokio Contributors <[email protected]>"]
license = "MIT" license = "MIT"
repository = "https://github.com/tokio-rs/tokio" repository = "https://github.com/tokio-rs/tokio"
homepage = "https://tokio.rs" 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 = """ description = """
Tokio's proc macros. Tokio's proc macros.
""" """
+1 -1
View File
@@ -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)] #![allow(clippy::needless_doctest_main)]
#![warn( #![warn(
missing_debug_implementations, missing_debug_implementations,
+1 -1
View File
@@ -92,7 +92,7 @@ uds = ["io-driver", "mio-uds", "libc"]
[dependencies] [dependencies]
tokio-macros = { version = "0.2.0", path = "../tokio-macros", optional = true } tokio-macros = { version = "0.2.2", path = "../tokio-macros", optional = true }
bytes = "0.5.0" bytes = "0.5.0"
pin-project-lite = "0.1.1" pin-project-lite = "0.1.1"