Skip to content

Commit

Permalink
Bump tokio-sync to 0.1.6 (#1123)
Browse files Browse the repository at this point in the history
  • Loading branch information
kleimkuhler authored and carllerche committed Jun 5, 2019
1 parent 970f75f commit 5dcb379
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 8 deletions.
12 changes: 9 additions & 3 deletions ci/azure-install-rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@ steps:
# Linux and macOS.
- script: |
set -e
curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain $RUSTUP_TOOLCHAIN
curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain none
export PATH=$PATH:$HOME/.cargo/bin
rustup toolchain install $RUSTUP_TOOLCHAIN
rustup default $RUSTUP_TOOLCHAIN
echo "##vso[task.setvariable variable=PATH;]$PATH:$HOME/.cargo/bin"
env:
RUSTUP_TOOLCHAIN: ${{parameters.rust_version}}
Expand All @@ -11,13 +14,16 @@ steps:
# Windows.
- script: |
echo "windows"
curl -sSf -o rustup-init.exe https://win.rustup.rs
rustup-init.exe -y --default-toolchain %RUSTUP_TOOLCHAIN%
rustup-init.exe -y --default-toolchain none
set PATH=%PATH%;%USERPROFILE%\.cargo\bin
rustup toolchain install %RUSTUP_TOOLCHAIN%
rustup default %RUSTUP_TOOLCHAIN%
echo "##vso[task.setvariable variable=PATH;]%PATH%;%USERPROFILE%\.cargo\bin"
env:
RUSTUP_TOOLCHAIN: ${{parameters.rust_version}}
displayName: "Install rust (windows)"
displayName: Install rust (windows)
condition: eq(variables['Agent.OS'], 'Windows_NT')
# All platforms.
Expand Down
2 changes: 1 addition & 1 deletion ci/azure-test-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- template: azure-patch-crates.yml

- script: cargo check --all
displayName: cargo +nightly check --all
displayName: cargo check --all

# Check benches
- script: cargo check --benches --all
Expand Down
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.6 (June 4, 2019)

### Added
- Add Sync impl for Lock (#1117).

# 0.1.5 (April 22, 2019)

### Added
Expand Down
4 changes: 2 additions & 2 deletions tokio-sync/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ name = "tokio-sync"
# - README.md
# - Update CHANGELOG.md.
# - Create "v0.1.x" git tag.
version = "0.1.5"
version = "0.1.6"
authors = ["Carl Lerche <me@carllerche.com>"]
license = "MIT"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://tokio.rs"
documentation = "https://docs.rs/tokio-sync/0.1.5/tokio_sync"
documentation = "https://docs.rs/tokio-sync/0.1.6/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.5/tokio_sync/)
[Documentation](https://docs.rs/tokio-sync/0.1.6/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.5")]
#![doc(html_root_url = "https://docs.rs/tokio-sync/0.1.6")]
#![deny(missing_debug_implementations, missing_docs, unreachable_pub)]
#![cfg_attr(test, deny(warnings))]

Expand Down

0 comments on commit 5dcb379

Please sign in to comment.