Skip to content

Commit d363537

Browse files
committed
Raise MSRV to 1.40.0
This will shortly be needed for Fuchsia support.
1 parent 670a78b commit d363537

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

.cirrus.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ task:
1212
image: freebsd-11-4-release-amd64
1313
setup_script:
1414
- fetch https://sh.rustup.rs -o rustup.sh
15-
- sh rustup.sh -y --profile=minimal --default-toolchain 1.36.0
15+
- sh rustup.sh -y --profile=minimal --default-toolchain 1.40.0
1616
- $HOME/.cargo/bin/rustup target add i686-unknown-freebsd
1717
amd64_test_script:
1818
- . $HOME/.cargo/env
@@ -42,7 +42,7 @@ task:
4242
image: catalina-xcode
4343
setup_script:
4444
- curl --proto '=https' --tlsv1.2 -sSf -o rustup.sh https://sh.rustup.rs
45-
- sh rustup.sh -y --profile=minimal --default-toolchain 1.36.0
45+
- sh rustup.sh -y --profile=minimal --default-toolchain 1.40.0
4646
- . $HOME/.cargo/env
4747
- bash ci/install.sh
4848
script:
@@ -92,7 +92,7 @@ docker_builder:
9292
setup_script:
9393
- mkdir /tmp/home
9494
- curl --proto '=https' --tlsv1.2 -sSf -o rustup.sh https://sh.rustup.rs
95-
- sh rustup.sh -y --profile=minimal --default-toolchain 1.36.0
95+
- sh rustup.sh -y --profile=minimal --default-toolchain 1.40.0
9696
- . $HOME/.cargo/env
9797
- bash ci/install.sh
9898
script:
@@ -110,11 +110,11 @@ task:
110110
- name: Linux x86_64
111111
env:
112112
TARGET: x86_64-unknown-linux-gnu
113-
TOOLCHAIN: 1.36.0
113+
TOOLCHAIN: 1.40.0
114114
- name: Linux x86_64 musl
115115
env:
116116
TARGET: x86_64-unknown-linux-musl
117-
TOOLCHAIN: 1.36.0
117+
TOOLCHAIN: 1.40.0
118118
container:
119119
image: rust:1.36
120120
setup_script:

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ This project adheres to [Semantic Versioning](http://semver.org/).
1010
### Fixed
1111
### Changed
1212

13+
- Minimum supported Rust version is now 1.40.0.
14+
([#1356](https://github.com/nix-rust/nix/pull/1356))
15+
1316
- i686-apple-darwin has been demoted to Tier 2 support, because it's deprecated
1417
by Xcode.
1518
(#[1350](https://github.com/nix-rust/nix/pull/1350))

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ Tier 3:
8686

8787
## Usage
8888

89-
`nix` requires Rust 1.36.0 or newer.
89+
`nix` requires Rust 1.40.0 or newer.
9090

9191
To use `nix`, add this to your `Cargo.toml`:
9292

0 commit comments

Comments
 (0)