From 682887060880c2ecbc11df762c86a07f5df49fb6 Mon Sep 17 00:00:00 2001 From: Carl Lerche Date: Tue, 4 Sep 2018 15:02:15 -0700 Subject: [PATCH] async-await: bump version to v0.1.2 (#619) --- tokio-async-await/Cargo.toml | 2 +- tokio-async-await/src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tokio-async-await/Cargo.toml b/tokio-async-await/Cargo.toml index d693808d9..1583de724 100644 --- a/tokio-async-await/Cargo.toml +++ b/tokio-async-await/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" # When releasing to crates.io: # - Update html_root_url. -version = "0.1.1" +version = "0.1.2" authors = ["Carl Lerche "] license = "MIT" repository = "https://github.com/tokio-rs/tokio" diff --git a/tokio-async-await/src/lib.rs b/tokio-async-await/src/lib.rs index eedcd74e6..1c0ac7217 100644 --- a/tokio-async-await/src/lib.rs +++ b/tokio-async-await/src/lib.rs @@ -1,6 +1,6 @@ #![feature(futures_api, await_macro, pin, arbitrary_self_types)] -#![doc(html_root_url = "https://docs.rs/tokio-async-await/0.1.0")] +#![doc(html_root_url = "https://docs.rs/tokio-async-await/0.1.2")] #![deny(missing_docs, missing_debug_implementations)] #![cfg_attr(test, deny(warnings))]