summaryrefslogtreecommitdiffstats
path: root/tokio
diff options
context:
space:
mode:
authorCarl Lerche <me@carllerche.com>2020-02-28 13:51:24 -0800
committerGitHub <noreply@github.com>2020-02-28 13:51:24 -0800
commitecc23c084a64188e272e2c1e9e370189358a088b (patch)
tree77890c99825b361d1a5b902463378c51291b9aab /tokio
parent937ae11f37b0acf6cff9f5808b050f5b8c6ec976 (diff)
chore: prepare v0.2.13 release (#2282)
Includes a quick bug fix
Diffstat (limited to 'tokio')
-rw-r--r--tokio/CHANGELOG.md5
-rw-r--r--tokio/Cargo.toml4
-rw-r--r--tokio/src/lib.rs2
3 files changed, 8 insertions, 3 deletions
diff --git a/tokio/CHANGELOG.md b/tokio/CHANGELOG.md
index ed785082..b1f4cf26 100644
--- a/tokio/CHANGELOG.md
+++ b/tokio/CHANGELOG.md
@@ -1,3 +1,8 @@
+# 0.2.13 (February 28, 2019)
+
+### Fixes
+- macros: unresolved import in `pin!` (#2281).
+
# 0.2.12 (February 27, 2019)
### Fixes
diff --git a/tokio/Cargo.toml b/tokio/Cargo.toml
index 20f68c39..322f5908 100644
--- a/tokio/Cargo.toml
+++ b/tokio/Cargo.toml
@@ -8,12 +8,12 @@ name = "tokio"
# - README.md
# - Update CHANGELOG.md.
# - Create "v0.2.x" git tag.
-version = "0.2.12"
+version = "0.2.13"
edition = "2018"
authors = ["Tokio Contributors <team@tokio.rs>"]
license = "MIT"
readme = "README.md"
-documentation = "https://docs.rs/tokio/0.2.12/tokio/"
+documentation = "https://docs.rs/tokio/0.2.13/tokio/"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://tokio.rs"
description = """
diff --git a/tokio/src/lib.rs b/tokio/src/lib.rs
index 043c3522..843a1e64 100644
--- a/tokio/src/lib.rs
+++ b/tokio/src/lib.rs
@@ -1,4 +1,4 @@
-#![doc(html_root_url = "https://docs.rs/tokio/0.2.12")]
+#![doc(html_root_url = "https://docs.rs/tokio/0.2.13")]
#![allow(
clippy::cognitive_complexity,
clippy::large_enum_variant,