Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump smallvec version to 1.0 #188

Merged
merged 2 commits into from
Nov 4, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ edition = "2018"

[dependencies]
cfg-if = "0.1.5"
smallvec = "0.6"
smallvec = "1.0"
petgraph = { version = "0.4.5", optional = true }
thread-id = { version = "3.2.0", optional = true }
backtrace = { version = "0.3.2", optional = true }
Expand Down