From 8a41fc3800b2fec5e3b0984a7f60303ceccd82c0 Mon Sep 17 00:00:00 2001 From: Ian Douglas Scott Date: Mon, 5 Jan 2026 17:42:16 -0800 Subject: [PATCH 1/2] Use `doc_cfg` feature instead of `doc_auto_cfg` on `docsrs` Fixes build with recent nightly, as now used by docs.rs. --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 71bfdbd1fd..f2e3fe32a0 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] #![warn( // missing_docs, // Commented out for now so the project isn't all yellow. missing_debug_implementations From 21c0e72710046ec6c088381051348b83929a68e5 Mon Sep 17 00:00:00 2001 From: Ian Douglas Scott Date: Thu, 23 Jul 2026 08:22:42 -0700 Subject: [PATCH 2/2] v0.21.1 --- CHANGELOG.md | 3 +++ Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e93a9593e3..8e8e04ba89 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ ## Unreleased +## 0.21.1 - 2026-07-23 +- Fix trait bound for `WlTouch` dispatch implementation + ## 0.21.0 - 2026-07-14 #### Breaking Changes diff --git a/Cargo.toml b/Cargo.toml index 01afa348d6..9c72cb2cb2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "smithay-client-toolkit" -version = "0.21.0" +version = "0.21.1" authors = ["Elinor Berger ", "i509VCB ", "Ashley Wulber "] documentation = "https://smithay.github.io/client-toolkit" repository = "https://github.com/smithay/client-toolkit"