Skip to content

Commit

Permalink
chore: release main (AccessKit#338)
Browse files Browse the repository at this point in the history
  • Loading branch information
mwcampbell authored Jan 11, 2024
1 parent a24f5fd commit 03bc0f9
Show file tree
Hide file tree
Showing 10 changed files with 43 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -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"}
{"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"}
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions bindings/c/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down
4 changes: 2 additions & 2 deletions bindings/c/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "accesskit_c"
version = "0.7.0"
version = "0.7.1"
authors = ["Arnold Loubriat <[email protected]>"]
license = "MIT OR Apache-2.0"
publish = false
Expand All @@ -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" }
4 changes: 4 additions & 0 deletions bindings/python/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
4 changes: 2 additions & 2 deletions bindings/python/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "accesskit_python"
version = "0.1.1"
version = "0.1.2"
authors = ["Arnold Loubriat <[email protected]>"]
license = "MIT OR Apache-2.0"
description = "Python bindings to the AccessKit library"
Expand All @@ -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" }
8 changes: 8 additions & 0 deletions platforms/unix/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down
2 changes: 1 addition & 1 deletion platforms/unix/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "accesskit_unix"
version = "0.7.0"
version = "0.7.1"
authors = ["Arnold Loubriat <[email protected]>"]
license = "MIT OR Apache-2.0"
description = "AccessKit UI accessibility infrastructure: Linux adapter"
Expand Down
15 changes: 15 additions & 0 deletions platforms/winit/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down
4 changes: 2 additions & 2 deletions platforms/winit/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "accesskit_winit"
version = "0.18.0"
version = "0.18.1"
authors = ["Matt Campbell <[email protected]>"]
license = "Apache-2.0"
description = "AccessKit UI accessibility infrastructure: winit adapter"
Expand Down Expand Up @@ -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"
Expand Down

0 comments on commit 03bc0f9

Please sign in to comment.