diff options
author | Homu <homu@barosl.com> | 2016-10-25 01:58:12 +0900 |
---|---|---|
committer | Homu <homu@barosl.com> | 2016-10-25 01:58:12 +0900 |
commit | bf1e6b2662a4a1b588925eaeaef4cff6d3757942 (patch) | |
tree | 4cc70d6756f0205d3f8a3993dedcf0266ee842bd | |
parent | 001fecb1c4bc73689f65c70c6e5703a7cdf666b6 (diff) | |
parent | 360f7aae380f0265b2a3b937c505a104d6a0f4cf (diff) | |
download | nix-bf1e6b2662a4a1b588925eaeaef4cff6d3757942.zip |
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
-rw-r--r-- | .travis.yml | 10 | ||||
-rw-r--r-- | CHANGELOG.md | 2 | ||||
-rw-r--r-- | Cargo.toml | 4 |
3 files changed, 5 insertions, 11 deletions
diff --git a/.travis.yml b/.travis.yml index 98030643..bbd1eeb0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,9 +16,7 @@ addons: - binutils-dev rust: - - 1.2.0 # Oldest supported version - - 1.7.0 - - 1.8.0 + - 1.7.0 # Oldest supported version - stable - beta - nightly @@ -48,12 +46,6 @@ matrix: - os: osx env: ARCH=i686 rust: stable - - os: osx - env: ARCH=x86_64 - rust: 1.2.0 - - os: osx - env: ARCH=i686 - rust: 1.2.0 # Docker builds for other targets - os: linux env: TARGET=aarch64-unknown-linux-gnu DOCKER_IMAGE=posborne/rust-cross:arm diff --git a/CHANGELOG.md b/CHANGELOG.md index 56d4828f..a6f5b0fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,8 @@ This project adheres to [Semantic Versioning](http://semver.org/). ([#410](https://github.com/nix-rust/nix/pull/410)) ### Changed +- The minimum supported version of rustc is now 1.7.0. + ([#444](https://github.com/nix-rust/nix/pull/444)) - Changed `KEvent` to an opaque structure that may only be modified by its constructor and the `ev_set` method. ([#415](https://github.com/nix-rust/nix/pull/415)) @@ -2,8 +2,8 @@ name = "nix" description = "Rust friendly bindings to *nix APIs" -version = "0.7.1-pre" -authors = ["Carl Lerche <me@carllerche.com>"] +version = "0.8.0-pre" +authors = ["The nix-rust Project Developers"] homepage = "https://github.com/nix-rust/nix" repository = "https://github.com/nix-rust/nix" license = "MIT" |