From c7ca32e6a1de3b79b67b2f474aa58850e817581c Mon Sep 17 00:00:00 2001 From: Kirill Chibisov Date: Thu, 2 Nov 2023 13:43:54 +0400 Subject: [PATCH 1/2] chore: bump MSRV to 1.65 --- .github/workflows/ci.yml | 2 +- CHANGELOG.md | 2 ++ Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6f11b08..c136207 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,7 +29,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - rust_version: ["1.64", stable, nightly] + rust_version: ["1.65", stable, nightly] steps: - uses: actions/checkout@v2 diff --git a/CHANGELOG.md b/CHANGELOG.md index 4db9ae4..a692515 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## Unreleased +- Bump MSRV from `1.64` to `1.65`. + ### Added - Access to alternative names for cursor icons through the `CursorIcon::alt_names` method. diff --git a/Cargo.toml b/Cargo.toml index a7a9d2b..1dfb246 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ license = "MIT OR Apache-2.0 OR Zlib" readme = "README.md" edition = "2021" categories = ["gui"] -rust-version = "1.64.0" +rust-version = "1.65.0" [dependencies] serde = { version = "1.0.162", default-features = false, features = ["derive"], optional = true } From 00cd08068cd6656e6bf2de6ced7221051f297314 Mon Sep 17 00:00:00 2001 From: Kirill Chibisov Date: Thu, 2 Nov 2023 13:22:24 +0400 Subject: [PATCH 2/2] test: update dependencies --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 1dfb246..679f67d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,5 +20,5 @@ std = ["alloc"] alloc = [] [dev-dependencies] -wayland-client = "0.30.1" -wayland-cursor = "0.30.0" +wayland-client = "0.31.1" +wayland-cursor = "0.31.0"