From 9d6d142bed7a67411aa3110fc0220bf97897e969 Mon Sep 17 00:00:00 2001 From: Carl Lerche Date: Fri, 1 Feb 2019 14:19:34 -0800 Subject: [PATCH] Bump tokio-sync v0.1.1 (#881) --- tokio-sync/CHANGELOG.md | 5 +++++ tokio-sync/Cargo.toml | 4 ++-- tokio-sync/README.md | 2 +- tokio-sync/src/lib.rs | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) diff --git a/tokio-sync/CHANGELOG.md b/tokio-sync/CHANGELOG.md index 12eb42a11..9809e8200 100644 --- a/tokio-sync/CHANGELOG.md +++ b/tokio-sync/CHANGELOG.md @@ -1,3 +1,8 @@ +# 0.1.1 (February 1, 2019) + +### Fixes +- Panic when creating a channel with bound 0 (#879). + # 0.1.0 (January 24, 2019) - Initial Release diff --git a/tokio-sync/Cargo.toml b/tokio-sync/Cargo.toml index 08875b60d..df21ffaaa 100644 --- a/tokio-sync/Cargo.toml +++ b/tokio-sync/Cargo.toml @@ -7,12 +7,12 @@ name = "tokio-sync" # - README.md # - Update CHANGELOG.md. # - Create "v0.1.x" git tag. -version = "0.1.0" +version = "0.1.1" authors = ["Carl Lerche "] license = "MIT" repository = "https://github.com/tokio-rs/tokio" homepage = "https://tokio.rs" -documentation = "https://docs.rs/tokio-sync/0.1.0/tokio_sync" +documentation = "https://docs.rs/tokio-sync/0.1.1/tokio_sync" description = """ Synchronization utilities. """ diff --git a/tokio-sync/README.md b/tokio-sync/README.md index 55e462290..771a5e8b9 100644 --- a/tokio-sync/README.md +++ b/tokio-sync/README.md @@ -2,7 +2,7 @@ Synchronization utilities -[Documentation](https://docs.rs/tokio-sync/0.1.0/tokio_sync/) +[Documentation](https://docs.rs/tokio-sync/0.1.1/tokio_sync/) ## Overview diff --git a/tokio-sync/src/lib.rs b/tokio-sync/src/lib.rs index 4bd1cf5b0..e1cc335ca 100644 --- a/tokio-sync/src/lib.rs +++ b/tokio-sync/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/tokio-sync/0.1.0")] +#![doc(html_root_url = "https://docs.rs/tokio-sync/0.1.1")] #![deny(missing_debug_implementations, missing_docs, unreachable_pub)] #![cfg_attr(test, deny(warnings))]