Skip to content

Commit

Permalink
Bump minimum Rust version to 1.36
Browse files Browse the repository at this point in the history
  • Loading branch information
messense committed Nov 4, 2019
1 parent 2269716 commit ffd5a97
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
7 changes: 3 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ env:

matrix:
include:
# can't run tests on 1.31.0 due to rand dev-dependency
- rust: 1.31.0
- rust: 1.36.0
os: linux
script:
- cargo build --lib
Expand All @@ -17,7 +16,7 @@ matrix:
- rustup target add wasm32-unknown-unknown
- cargo build --lib --target wasm32-unknown-unknown

- rust: 1.32.0
- rust: 1.36.0
os: linux
script: &script
- cargo build
Expand Down Expand Up @@ -61,7 +60,7 @@ matrix:
- cargo run --release --bin rwlock -- 1 1 1 0 1 2
- cd ..

- rust: 1.32.0
- rust: 1.36.0
os: osx
script: *script

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ changes to the core API do not cause breaking changes for users of `parking_lot`

## Minimum Rust version

The current minimum required Rust version is 1.31. Any change to this is
The current minimum required Rust version is 1.36. Any change to this is
considered a breaking change and will require a major version bump.

## License
Expand Down
8 changes: 4 additions & 4 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,19 +25,19 @@ environment:
- TARGET: x86_64-pc-windows-msvc
MSYSTEM: MINGW64
CPU: x86_64
TOOLCHAIN: 1.32.0
TOOLCHAIN: 1.36.0
- TARGET: i686-pc-windows-msvc
MSYSTEM: MINGW32
CPU: i686
TOOLCHAIN: 1.32.0
TOOLCHAIN: 1.36.0
- TARGET: x86_64-pc-windows-gnu
MSYSTEM: MINGW64
CPU: x86_64
TOOLCHAIN: 1.32.0
TOOLCHAIN: 1.36.0
- TARGET: i686-pc-windows-gnu
MSYSTEM: MINGW32
CPU: i686
TOOLCHAIN: 1.32.0
TOOLCHAIN: 1.36.0

install:
- set PATH=C:\msys64\%MSYSTEM%\bin;c:\msys64\usr\bin;%PATH%
Expand Down

0 comments on commit ffd5a97

Please sign in to comment.