Skip to content

Commit

Permalink
Bump tokio-sync v0.1.1 (#881)
Browse files Browse the repository at this point in the history
  • Loading branch information
carllerche authored Feb 1, 2019
1 parent 95b0eec commit 9d6d142
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions tokio-sync/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
4 changes: 2 additions & 2 deletions tokio-sync/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>"]
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.
"""
Expand Down
2 changes: 1 addition & 1 deletion tokio-sync/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion tokio-sync/src/lib.rs
Original file line number Diff line number Diff line change
@@ -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))]

Expand Down

0 comments on commit 9d6d142

Please sign in to comment.