From 5dcb379f6da6e7bd97f5dde94706eecc1eed2de0 Mon Sep 17 00:00:00 2001 From: Kevin Leimkuhler Date: Wed, 5 Jun 2019 12:19:06 -0700 Subject: [PATCH] Bump `tokio-sync` to 0.1.6 (#1123) --- ci/azure-install-rust.yml | 12 +++++++++--- ci/azure-test-nightly.yml | 2 +- tokio-sync/CHANGELOG.md | 5 +++++ tokio-sync/Cargo.toml | 4 ++-- tokio-sync/README.md | 2 +- tokio-sync/src/lib.rs | 2 +- 6 files changed, 19 insertions(+), 8 deletions(-) diff --git a/ci/azure-install-rust.yml b/ci/azure-install-rust.yml index 654db4738..136a96599 100644 --- a/ci/azure-install-rust.yml +++ b/ci/azure-install-rust.yml @@ -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}} @@ -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. diff --git a/ci/azure-test-nightly.yml b/ci/azure-test-nightly.yml index d739a1a96..bbb444426 100644 --- a/ci/azure-test-nightly.yml +++ b/ci/azure-test-nightly.yml @@ -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 diff --git a/tokio-sync/CHANGELOG.md b/tokio-sync/CHANGELOG.md index 0eaa7ed22..60b500a24 100644 --- a/tokio-sync/CHANGELOG.md +++ b/tokio-sync/CHANGELOG.md @@ -1,3 +1,8 @@ +# 0.1.6 (June 4, 2019) + +### Added +- Add Sync impl for Lock (#1117). + # 0.1.5 (April 22, 2019) ### Added diff --git a/tokio-sync/Cargo.toml b/tokio-sync/Cargo.toml index 072694f29..bab2a1a00 100644 --- a/tokio-sync/Cargo.toml +++ b/tokio-sync/Cargo.toml @@ -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 "] 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. """ diff --git a/tokio-sync/README.md b/tokio-sync/README.md index 74dfa4f56..a35d5bc8e 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.5/tokio_sync/) +[Documentation](https://docs.rs/tokio-sync/0.1.6/tokio_sync/) ## Overview diff --git a/tokio-sync/src/lib.rs b/tokio-sync/src/lib.rs index 6439acdd2..cd7914625 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.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))]