Skip to content

Commit bf1e6b2

Browse files
committed
Auto merge of #444 - posborne:rust-1.7-minimum-supported-version, r=kamalmarhubi
ci: drop official support for rustc < 1.7.0 Supporting older versions of rust is causing CI to fail and is a somewhat constant support burden with questionable value. 1.7.0 is the oldest I have seen that people have had a requirement on supporting in recent history. It may make sense to work toward a more official policy on what version of rust we will support in the future. Users of older version of rust are, of course, welcome to use older versions of nix and everything else in the ecosystem. r? @kamalmarhubi @fiveop
2 parents 001fecb + 360f7aa commit bf1e6b2

File tree

3 files changed

+5
-11
lines changed

3 files changed

+5
-11
lines changed

.travis.yml

+1-9
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,7 @@ addons:
1616
- binutils-dev
1717

1818
rust:
19-
- 1.2.0 # Oldest supported version
20-
- 1.7.0
21-
- 1.8.0
19+
- 1.7.0 # Oldest supported version
2220
- stable
2321
- beta
2422
- nightly
@@ -48,12 +46,6 @@ matrix:
4846
- os: osx
4947
env: ARCH=i686
5048
rust: stable
51-
- os: osx
52-
env: ARCH=x86_64
53-
rust: 1.2.0
54-
- os: osx
55-
env: ARCH=i686
56-
rust: 1.2.0
5749
# Docker builds for other targets
5850
- os: linux
5951
env: TARGET=aarch64-unknown-linux-gnu DOCKER_IMAGE=posborne/rust-cross:arm

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
1414
([#410](https://github.com/nix-rust/nix/pull/410))
1515

1616
### Changed
17+
- The minimum supported version of rustc is now 1.7.0.
18+
([#444](https://github.com/nix-rust/nix/pull/444))
1719
- Changed `KEvent` to an opaque structure that may only be modified by its
1820
constructor and the `ev_set` method.
1921
([#415](https://github.com/nix-rust/nix/pull/415))

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
name = "nix"
44
description = "Rust friendly bindings to *nix APIs"
5-
version = "0.7.1-pre"
6-
authors = ["Carl Lerche <[email protected]>"]
5+
version = "0.8.0-pre"
6+
authors = ["The nix-rust Project Developers"]
77
homepage = "https://github.com/nix-rust/nix"
88
repository = "https://github.com/nix-rust/nix"
99
license = "MIT"

0 commit comments

Comments
 (0)