From dd76c5ed0f1bec41e3c6ab7be5ddc39b7bbdfeae Mon Sep 17 00:00:00 2001 From: Fredrik Fornwall Date: Tue, 30 Jan 2024 17:02:21 +0100 Subject: [PATCH 1/2] Bump MSRV to 1.66.0 --- .builds/freebsd.yml | 4 ++-- .builds/linux.yml | 4 ++-- CHANGELOG.md | 6 ++++++ 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/.builds/freebsd.yml b/.builds/freebsd.yml index afb5790..672084a 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.65.0 - cargo +1.65.0 test + rustup toolchain install --profile minimal 1.66.0 + cargo +1.66.0 test diff --git a/.builds/linux.yml b/.builds/linux.yml index 356217a..3256a28 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.65.0 - cargo +1.65.0 test + rustup toolchain install --profile minimal 1.66.0 + cargo +1.66.0 test diff --git a/CHANGELOG.md b/CHANGELOG.md index 31956ef..03282b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ 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 + +### Packaging + +- Minimum rust version was bumped to `1.66.0` + ## 0.10.0 ### Changed From a7a44b5920f63ebc4bd69629eb759269bd721035 Mon Sep 17 00:00:00 2001 From: Fredrik Fornwall Date: Tue, 30 Jan 2024 17:03:41 +0100 Subject: [PATCH 2/2] Update x11-clipboard to 0.9.1 --- CHANGELOG.md | 1 + Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 03282b9..44cc081 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Packaging - Minimum rust version was bumped to `1.66.0` +- `x11_clipboard` was bumped to `0.9.1` ## 0.10.0 diff --git a/Cargo.toml b/Cargo.toml index 19f53c6..fb430b1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -26,5 +26,5 @@ objc_id = "0.1" objc-foundation = "0.1" [target.'cfg(all(unix, not(any(target_os="macos", target_os="android", target_os="ios", target_os="emscripten"))))'.dependencies] -x11-clipboard = { version = "0.8.1", optional = true } +x11-clipboard = { version = "0.9.1", optional = true } smithay-clipboard = { version = "0.7.0", optional = true }