From 4e42d85b8a875401ce769dcef02e7228d0436d57 Mon Sep 17 00:00:00 2001 From: Arnold Loubriat Date: Sat, 23 May 2026 20:00:58 +0200 Subject: [PATCH] chore: release main --- .release-please-manifest.json | 2 +- Cargo.lock | 4 ++-- platforms/unix/CHANGELOG.md | 7 +++++++ platforms/unix/Cargo.toml | 2 +- platforms/winit/CHANGELOG.md | 9 +++++++++ platforms/winit/Cargo.toml | 4 ++-- 6 files changed, 22 insertions(+), 6 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index c202ffc9..584cc596 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{"common":"0.24.0","consumer":"0.36.0","platforms/macos":"0.26.1","platforms/windows":"0.33.0","platforms/winit":"0.33.0","platforms/unix":"0.21.1","platforms/atspi-common":"0.18.1","platforms/android":"0.7.3","platforms/ios":"0.1.0"} \ No newline at end of file +{"common":"0.24.0","consumer":"0.36.0","platforms/macos":"0.26.1","platforms/windows":"0.33.0","platforms/winit":"0.33.1","platforms/unix":"0.21.2","platforms/atspi-common":"0.18.1","platforms/android":"0.7.3","platforms/ios":"0.1.0"} \ No newline at end of file diff --git a/Cargo.lock b/Cargo.lock index 4c08761f..cc22dc35 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -86,7 +86,7 @@ dependencies = [ [[package]] name = "accesskit_unix" -version = "0.21.1" +version = "0.21.2" dependencies = [ "accesskit", "accesskit_atspi_common", @@ -120,7 +120,7 @@ dependencies = [ [[package]] name = "accesskit_winit" -version = "0.33.0" +version = "0.33.1" dependencies = [ "accesskit", "accesskit_android", diff --git a/platforms/unix/CHANGELOG.md b/platforms/unix/CHANGELOG.md index 20d5e73a..afb3b826 100644 --- a/platforms/unix/CHANGELOG.md +++ b/platforms/unix/CHANGELOG.md @@ -68,6 +68,13 @@ * accesskit bumped from 0.17.0 to 0.17.1 * accesskit_atspi_common bumped from 0.10.0 to 0.10.1 +## [0.21.2](https://github.com/AccessKit/accesskit/compare/accesskit_unix-v0.21.1...accesskit_unix-v0.21.2) (2026-05-23) + + +### Bug Fixes + +* Watch the IsEnabled property to lazily activate on Unix ([#715](https://github.com/AccessKit/accesskit/issues/715)) ([e7299a7](https://github.com/AccessKit/accesskit/commit/e7299a753d78e8b00dd75e1d2182abb517648f98)) + ## [0.21.1](https://github.com/AccessKit/accesskit/compare/accesskit_unix-v0.21.0...accesskit_unix-v0.21.1) (2026-05-11) diff --git a/platforms/unix/Cargo.toml b/platforms/unix/Cargo.toml index 46e6f533..287f1031 100644 --- a/platforms/unix/Cargo.toml +++ b/platforms/unix/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "accesskit_unix" -version = "0.21.1" +version = "0.21.2" authors.workspace = true license.workspace = true description = "AccessKit UI accessibility infrastructure: Linux adapter" diff --git a/platforms/winit/CHANGELOG.md b/platforms/winit/CHANGELOG.md index 2633cf37..6a0818a4 100644 --- a/platforms/winit/CHANGELOG.md +++ b/platforms/winit/CHANGELOG.md @@ -147,6 +147,15 @@ * accesskit_macos bumped from 0.18.0 to 0.18.1 * accesskit_unix bumped from 0.13.0 to 0.13.1 +## [0.33.1](https://github.com/AccessKit/accesskit/compare/accesskit_winit-v0.33.0...accesskit_winit-v0.33.1) (2026-05-23) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * accesskit_unix bumped from 0.21.1 to 0.21.2 + ## [0.33.0](https://github.com/AccessKit/accesskit/compare/accesskit_winit-v0.32.2...accesskit_winit-v0.33.0) (2026-05-11) diff --git a/platforms/winit/Cargo.toml b/platforms/winit/Cargo.toml index 0034e277..9b341985 100644 --- a/platforms/winit/Cargo.toml +++ b/platforms/winit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "accesskit_winit" -version = "0.33.0" +version = "0.33.1" authors.workspace = true license = "Apache-2.0" description = "AccessKit UI accessibility infrastructure: winit adapter" @@ -31,7 +31,7 @@ accesskit_windows = { version = "0.33.0", path = "../windows" } accesskit_macos = { version = "0.26.1", path = "../macos" } [target.'cfg(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd", target_os = "openbsd", target_os = "netbsd"))'.dependencies] -accesskit_unix = { version = "0.21.1", path = "../unix", optional = true, default-features = false } +accesskit_unix = { version = "0.21.2", path = "../unix", optional = true, default-features = false } [target.'cfg(target_os = "android")'.dependencies] accesskit_android = { version = "0.7.3", path = "../android", optional = true, features = ["embedded-dex"] }