Bump minimum supported Rust version to 1.41.0

This commit is contained in:
Christian Duerr 2020-04-23 03:43:21 +02:00
parent 3bfb5958bc
commit 738c8de232
5 changed files with 12 additions and 12 deletions

View File

@ -12,10 +12,10 @@ sources:
tasks: tasks:
- rustup: | - rustup: |
curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain stable --profile minimal curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain stable --profile minimal
- 1-39-0: | - 1-41-0: |
$HOME/.cargo/bin/rustup toolchain install --profile minimal 1.39.0 $HOME/.cargo/bin/rustup toolchain install --profile minimal 1.41.0
cd alacritty cd alacritty
$HOME/.cargo/bin/cargo +1.39.0 test $HOME/.cargo/bin/cargo +1.41.0 test
- stable: | - stable: |
cd alacritty cd alacritty
$HOME/.cargo/bin/cargo +stable test $HOME/.cargo/bin/cargo +stable test

View File

@ -16,7 +16,7 @@ os:
- osx - osx
rust: rust:
- 1.39.0 - 1.41.0
- stable - stable
- nightly - nightly
@ -30,22 +30,22 @@ matrix:
- name: "Clippy Linux" - name: "Clippy Linux"
os: linux os: linux
env: CLIPPY=true env: CLIPPY=true
rust: 1.39.0 rust: 1.41.0
- name: "Clippy OSX" - name: "Clippy OSX"
os: osx os: osx
env: CLIPPY=true env: CLIPPY=true
rust: 1.39.0 rust: 1.41.0
- name: "Clippy Windows" - name: "Clippy Windows"
os: windows os: windows
env: CLIPPY=true env: CLIPPY=true
rust: 1.39.0-x86_64-pc-windows-msvc rust: 1.41.0-x86_64-pc-windows-msvc
- name: "Rustfmt" - name: "Rustfmt"
os: linux os: linux
env: RUSTFMT=true env: RUSTFMT=true
rust: nightly rust: nightly
- name: "Windows 1.39.0" - name: "Windows 1.41.0"
os: windows os: windows
rust: 1.39.0-x86_64-pc-windows-msvc rust: 1.41.0-x86_64-pc-windows-msvc
- name: "Windows Stable" - name: "Windows Stable"
os: windows os: windows
rust: stable-x86_64-pc-windows-msvc rust: stable-x86_64-pc-windows-msvc

View File

@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Packaging ### Packaging
- Minimum Rust version has been bumped to 1.39.0 - Minimum Rust version has been bumped to 1.41.0
### Added ### Added

View File

@ -42,7 +42,7 @@ and
[easy](https://github.com/alacritty/alacritty/issues?q=is%3Aopen+is%3Aissue+label%3A%22D+-+easy%22) [easy](https://github.com/alacritty/alacritty/issues?q=is%3Aopen+is%3Aissue+label%3A%22D+-+easy%22)
issues. issues.
Please note that the minimum supported version of Alacritty is Rust 1.39.0. All patches are expected Please note that the minimum supported version of Alacritty is Rust 1.41.0. All patches are expected
to work with the minimum supported version. to work with the minimum supported version.
### Testing ### Testing

View File

@ -7,7 +7,7 @@ URL: https://github.com/alacritty/alacritty
VCS: https://github.com/alacritty/alacritty.git VCS: https://github.com/alacritty/alacritty.git
Source: alacritty-%{version}.tar Source: alacritty-%{version}.tar
BuildRequires: rust >= 1.39.0 BuildRequires: rust >= 1.41.0
BuildRequires: cargo BuildRequires: cargo
BuildRequires: cmake BuildRequires: cmake
BuildRequires: freetype-devel BuildRequires: freetype-devel