From 03bc0f9e65a05294d3171f8cb7b816f4dc897aca Mon Sep 17 00:00:00 2001 From: Matt Campbell Date: Thu, 11 Jan 2024 10:12:31 -0600 Subject: [PATCH] chore: release main (#338) --- .release-please-manifest.json | 2 +- Cargo.lock | 8 ++++---- bindings/c/CHANGELOG.md | 4 ++++ bindings/c/Cargo.toml | 4 ++-- bindings/python/CHANGELOG.md | 4 ++++ bindings/python/Cargo.toml | 4 ++-- platforms/unix/CHANGELOG.md | 8 ++++++++ platforms/unix/Cargo.toml | 2 +- platforms/winit/CHANGELOG.md | 15 +++++++++++++++ platforms/winit/Cargo.toml | 4 ++-- 10 files changed, 43 insertions(+), 12 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 935647ee0..ae0355cce 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{"common":"0.12.2","consumer":"0.17.0","platforms/macos":"0.11.0","platforms/windows":"0.16.0","platforms/winit":"0.18.0","platforms/unix":"0.7.0","bindings/c":"0.7.0","bindings/python":"0.1.1"} \ No newline at end of file +{"common":"0.12.2","consumer":"0.17.0","platforms/macos":"0.11.0","platforms/windows":"0.16.0","platforms/winit":"0.18.1","platforms/unix":"0.7.1","bindings/c":"0.7.1","bindings/python":"0.1.2"} \ No newline at end of file diff --git a/Cargo.lock b/Cargo.lock index 9b991bdbf..6274b861b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -30,7 +30,7 @@ dependencies = [ [[package]] name = "accesskit_c" -version = "0.7.0" +version = "0.7.1" dependencies = [ "accesskit", "accesskit_macos", @@ -59,7 +59,7 @@ dependencies = [ [[package]] name = "accesskit_python" -version = "0.1.1" +version = "0.1.2" dependencies = [ "accesskit", "accesskit_macos", @@ -70,7 +70,7 @@ dependencies = [ [[package]] name = "accesskit_unix" -version = "0.7.0" +version = "0.7.1" dependencies = [ "accesskit", "accesskit_consumer", @@ -103,7 +103,7 @@ dependencies = [ [[package]] name = "accesskit_winit" -version = "0.18.0" +version = "0.18.1" dependencies = [ "accesskit", "accesskit_macos", diff --git a/bindings/c/CHANGELOG.md b/bindings/c/CHANGELOG.md index ab6a21343..e0c6ea6db 100644 --- a/bindings/c/CHANGELOG.md +++ b/bindings/c/CHANGELOG.md @@ -29,6 +29,10 @@ * dependencies * accesskit_unix bumped from 0.6.1 to 0.6.2 +* The following workspace dependencies were updated + * dependencies + * accesskit_unix bumped from 0.7.0 to 0.7.1 + ## [0.7.0](https://github.com/AccessKit/accesskit/compare/accesskit_c-v0.6.2...accesskit_c-v0.7.0) (2024-01-03) diff --git a/bindings/c/Cargo.toml b/bindings/c/Cargo.toml index 004e8cf2f..2117f0f48 100644 --- a/bindings/c/Cargo.toml +++ b/bindings/c/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "accesskit_c" -version = "0.7.0" +version = "0.7.1" authors = ["Arnold Loubriat "] license = "MIT OR Apache-2.0" publish = false @@ -25,4 +25,4 @@ accesskit_windows = { version = "0.16.0", path = "../../platforms/windows" } accesskit_macos = { version = "0.11.0", path = "../../platforms/macos" } [target.'cfg(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd", target_os = "openbsd", target_os = "netbsd"))'.dependencies] -accesskit_unix = { version = "0.7.0", path = "../../platforms/unix" } +accesskit_unix = { version = "0.7.1", path = "../../platforms/unix" } diff --git a/bindings/python/CHANGELOG.md b/bindings/python/CHANGELOG.md index 4d76aa2ca..7450c6ac5 100644 --- a/bindings/python/CHANGELOG.md +++ b/bindings/python/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +* The following workspace dependencies were updated + * dependencies + * accesskit_unix bumped from 0.7.0 to 0.7.1 + ## [0.1.1](https://github.com/AccessKit/accesskit/compare/accesskit_python-v0.1.0...accesskit_python-v0.1.1) (2024-01-06) diff --git a/bindings/python/Cargo.toml b/bindings/python/Cargo.toml index ba80f7d60..011edbbf1 100644 --- a/bindings/python/Cargo.toml +++ b/bindings/python/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "accesskit_python" -version = "0.1.1" +version = "0.1.2" authors = ["Arnold Loubriat "] license = "MIT OR Apache-2.0" description = "Python bindings to the AccessKit library" @@ -27,4 +27,4 @@ accesskit_windows = { version = "0.16.0", path = "../../platforms/windows" } accesskit_macos = { version = "0.11.0", path = "../../platforms/macos" } [target.'cfg(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd", target_os = "openbsd", target_os = "netbsd"))'.dependencies] -accesskit_unix = { version = "0.7.0", path = "../../platforms/unix" } +accesskit_unix = { version = "0.7.1", path = "../../platforms/unix" } diff --git a/platforms/unix/CHANGELOG.md b/platforms/unix/CHANGELOG.md index 1dea3d70a..4614be136 100644 --- a/platforms/unix/CHANGELOG.md +++ b/platforms/unix/CHANGELOG.md @@ -29,6 +29,14 @@ * accesskit bumped from 0.12.0 to 0.12.1 * accesskit_consumer bumped from 0.16.0 to 0.16.1 +## [0.7.1](https://github.com/AccessKit/accesskit/compare/accesskit_unix-v0.7.0...accesskit_unix-v0.7.1) (2024-01-11) + + +### Bug Fixes + +* Make full use of tokio ecosystem if the tokio feature is enabled on Unix ([#336](https://github.com/AccessKit/accesskit/issues/336)) ([c034802](https://github.com/AccessKit/accesskit/commit/c0348024665a615a30fd8fe2f02e8c93cf9c6332)) +* Run our own async executor on Unix ([#337](https://github.com/AccessKit/accesskit/issues/337)) ([8f937ba](https://github.com/AccessKit/accesskit/commit/8f937baaa510dd96da196501822b82f75f05b595)) + ## [0.7.0](https://github.com/AccessKit/accesskit/compare/accesskit_unix-v0.6.2...accesskit_unix-v0.7.0) (2024-01-03) diff --git a/platforms/unix/Cargo.toml b/platforms/unix/Cargo.toml index 761296a91..1cc7295de 100644 --- a/platforms/unix/Cargo.toml +++ b/platforms/unix/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "accesskit_unix" -version = "0.7.0" +version = "0.7.1" authors = ["Arnold Loubriat "] license = "MIT OR Apache-2.0" description = "AccessKit UI accessibility infrastructure: Linux adapter" diff --git a/platforms/winit/CHANGELOG.md b/platforms/winit/CHANGELOG.md index 79ed2adce..351c7d8dc 100644 --- a/platforms/winit/CHANGELOG.md +++ b/platforms/winit/CHANGELOG.md @@ -73,6 +73,21 @@ * dependencies * accesskit_windows bumped from 0.14.2 to 0.14.3 +## [0.18.1](https://github.com/AccessKit/accesskit/compare/accesskit_winit-v0.18.0...accesskit_winit-v0.18.1) (2024-01-11) + + +### Bug Fixes + +* Run our own async executor on Unix ([#337](https://github.com/AccessKit/accesskit/issues/337)) ([8f937ba](https://github.com/AccessKit/accesskit/commit/8f937baaa510dd96da196501822b82f75f05b595)) +* Show an error at compile-time if no raw-window-handle feature is enabled for the winit adapter ([#339](https://github.com/AccessKit/accesskit/issues/339)) ([a24f5fd](https://github.com/AccessKit/accesskit/commit/a24f5fd443a683a6194b54244052ff3e1cc05de6)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * accesskit_unix bumped from 0.7.0 to 0.7.1 + ## [0.18.0](https://github.com/AccessKit/accesskit/compare/accesskit_winit-v0.17.0...accesskit_winit-v0.18.0) (2024-01-03) diff --git a/platforms/winit/Cargo.toml b/platforms/winit/Cargo.toml index c1370fd3e..18f0e8475 100644 --- a/platforms/winit/Cargo.toml +++ b/platforms/winit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "accesskit_winit" -version = "0.18.0" +version = "0.18.1" authors = ["Matt Campbell "] license = "Apache-2.0" description = "AccessKit UI accessibility infrastructure: winit adapter" @@ -33,7 +33,7 @@ accesskit_windows = { version = "0.16.0", path = "../windows" } accesskit_macos = { version = "0.11.0", 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.7.0", path = "../unix", optional = true, default-features = false } +accesskit_unix = { version = "0.7.1", path = "../unix", optional = true, default-features = false } [dev-dependencies.winit] version = "0.29"