From 683885bdd80ac1bf12497573ae05889bbb2f6210 Mon Sep 17 00:00:00 2001 From: Yutaka Kamei Date: Thu, 14 Sep 2023 10:41:09 +0900 Subject: [PATCH] Bump minimum supported Rust version to 1.61.0 --- .builds/freebsd.yml | 4 ++-- .builds/linux.yml | 4 ++-- .github/workflows/ci.yml | 2 +- CHANGELOG.md | 4 ++++ Cargo.toml | 2 +- 5 files changed, 10 insertions(+), 6 deletions(-) diff --git a/.builds/freebsd.yml b/.builds/freebsd.yml index 674317a..7f624d1 100644 --- a/.builds/freebsd.yml +++ b/.builds/freebsd.yml @@ -25,5 +25,5 @@ tasks: cargo clippy --all-targets - oldstable: | cd copypasta - rustup toolchain install --profile minimal 1.60.0 - cargo +1.60.0 test + rustup toolchain install --profile minimal 1.61.0 + cargo +1.61.0 test diff --git a/.builds/linux.yml b/.builds/linux.yml index fad9563..fa8cffd 100644 --- a/.builds/linux.yml +++ b/.builds/linux.yml @@ -26,5 +26,5 @@ tasks: cargo clippy --all-targets - oldstable: | cd copypasta - rustup toolchain install --profile minimal 1.60.0 - cargo +1.60.0 test + rustup toolchain install --profile minimal 1.61.0 + cargo +1.61.0 test diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a856b8b..fb68eae 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,6 +23,6 @@ jobs: cargo clippy --all-targets - name: Oldstable run: | - rustup default 1.60.0 + rustup default 1.61.0 cargo clean cargo test diff --git a/CHANGELOG.md b/CHANGELOG.md index fa47f37..31954d3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## Unreleased + +- Bump minimum supported Rust version to `1.61.0` + ## 0.8.2 ### Packaging diff --git a/Cargo.toml b/Cargo.toml index 045be48..b1f34dc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ license = "MIT / Apache-2.0" keywords = ["clipboard"] exclude = ["/.travis.yml"] edition = "2021" -rust-version = "1.60.0" +rust-version = "1.61.0" [features] default = ["x11", "wayland"]