mirror of
https://github.com/tokio-rs/tokio.git
synced 2025-10-01 12:20:39 +00:00
Bump tokio-sync
to 0.1.6 (#1123)
This commit is contained in:
parent
970f75f830
commit
5dcb379f6d
@ -2,7 +2,10 @@ steps:
|
|||||||
# Linux and macOS.
|
# Linux and macOS.
|
||||||
- script: |
|
- script: |
|
||||||
set -e
|
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"
|
echo "##vso[task.setvariable variable=PATH;]$PATH:$HOME/.cargo/bin"
|
||||||
env:
|
env:
|
||||||
RUSTUP_TOOLCHAIN: ${{parameters.rust_version}}
|
RUSTUP_TOOLCHAIN: ${{parameters.rust_version}}
|
||||||
@ -11,13 +14,16 @@ steps:
|
|||||||
|
|
||||||
# Windows.
|
# Windows.
|
||||||
- script: |
|
- script: |
|
||||||
|
echo "windows"
|
||||||
curl -sSf -o rustup-init.exe https://win.rustup.rs
|
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
|
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"
|
echo "##vso[task.setvariable variable=PATH;]%PATH%;%USERPROFILE%\.cargo\bin"
|
||||||
env:
|
env:
|
||||||
RUSTUP_TOOLCHAIN: ${{parameters.rust_version}}
|
RUSTUP_TOOLCHAIN: ${{parameters.rust_version}}
|
||||||
displayName: "Install rust (windows)"
|
displayName: Install rust (windows)
|
||||||
condition: eq(variables['Agent.OS'], 'Windows_NT')
|
condition: eq(variables['Agent.OS'], 'Windows_NT')
|
||||||
|
|
||||||
# All platforms.
|
# All platforms.
|
||||||
|
@ -12,7 +12,7 @@ jobs:
|
|||||||
- template: azure-patch-crates.yml
|
- template: azure-patch-crates.yml
|
||||||
|
|
||||||
- script: cargo check --all
|
- script: cargo check --all
|
||||||
displayName: cargo +nightly check --all
|
displayName: cargo check --all
|
||||||
|
|
||||||
# Check benches
|
# Check benches
|
||||||
- script: cargo check --benches --all
|
- script: cargo check --benches --all
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
# 0.1.6 (June 4, 2019)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- Add Sync impl for Lock (#1117).
|
||||||
|
|
||||||
# 0.1.5 (April 22, 2019)
|
# 0.1.5 (April 22, 2019)
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
@ -8,12 +8,12 @@ name = "tokio-sync"
|
|||||||
# - README.md
|
# - README.md
|
||||||
# - Update CHANGELOG.md.
|
# - Update CHANGELOG.md.
|
||||||
# - Create "v0.1.x" git tag.
|
# - Create "v0.1.x" git tag.
|
||||||
version = "0.1.5"
|
version = "0.1.6"
|
||||||
authors = ["Carl Lerche <me@carllerche.com>"]
|
authors = ["Carl Lerche <me@carllerche.com>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
repository = "https://github.com/tokio-rs/tokio"
|
repository = "https://github.com/tokio-rs/tokio"
|
||||||
homepage = "https://tokio.rs"
|
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 = """
|
description = """
|
||||||
Synchronization utilities.
|
Synchronization utilities.
|
||||||
"""
|
"""
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Synchronization utilities
|
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
|
## Overview
|
||||||
|
|
||||||
|
@ -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)]
|
#![deny(missing_debug_implementations, missing_docs, unreachable_pub)]
|
||||||
#![cfg_attr(test, deny(warnings))]
|
#![cfg_attr(test, deny(warnings))]
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user