Skip to content

Commit

Permalink
chore: release main (#413)
Browse files Browse the repository at this point in the history
  • Loading branch information
mwcampbell authored May 26, 2024
1 parent 52540f8 commit 88151c9
Show file tree
Hide file tree
Showing 18 changed files with 128 additions and 30 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.14.0","consumer":"0.20.0","platforms/macos":"0.13.2","platforms/windows":"0.18.2","platforms/winit":"0.20.2","platforms/unix":"0.9.2","bindings/c":"0.10.1","bindings/python":"0.3.2","platforms/atspi-common":"0.4.2"}
{"common":"0.14.0","consumer":"0.21.0","platforms/macos":"0.14.0","platforms/windows":"0.19.0","platforms/winit":"0.20.3","platforms/unix":"0.10.0","bindings/c":"0.10.2","bindings/python":"0.3.3","platforms/atspi-common":"0.5.0"}
16 changes: 8 additions & 8 deletions Cargo.lock

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

6 changes: 6 additions & 0 deletions bindings/c/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,12 @@
* accesskit_macos bumped from 0.13.1 to 0.13.2
* accesskit_unix bumped from 0.9.1 to 0.9.2

* The following workspace dependencies were updated
* dependencies
* accesskit_windows bumped from 0.18.2 to 0.19.0
* accesskit_macos bumped from 0.13.2 to 0.14.0
* accesskit_unix bumped from 0.9.2 to 0.10.0

## [0.10.0](https://github.com/AccessKit/accesskit/compare/accesskit_c-v0.9.0...accesskit_c-v0.10.0) (2024-05-11)


Expand Down
8 changes: 4 additions & 4 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.10.1"
version = "0.10.2"
authors.workspace = true
license.workspace = true
publish = false
Expand All @@ -19,10 +19,10 @@ accesskit = { version = "0.14.0", path = "../../common" }
paste = "1.0"

[target.'cfg(target_os = "windows")'.dependencies]
accesskit_windows = { version = "0.18.2", path = "../../platforms/windows" }
accesskit_windows = { version = "0.19.0", path = "../../platforms/windows" }

[target.'cfg(target_os = "macos")'.dependencies]
accesskit_macos = { version = "0.13.2", path = "../../platforms/macos" }
accesskit_macos = { version = "0.14.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.9.2", path = "../../platforms/unix" }
accesskit_unix = { version = "0.10.0", path = "../../platforms/unix" }
6 changes: 6 additions & 0 deletions bindings/python/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,12 @@
* accesskit_macos bumped from 0.13.1 to 0.13.2
* accesskit_unix bumped from 0.9.1 to 0.9.2

* The following workspace dependencies were updated
* dependencies
* accesskit_windows bumped from 0.18.2 to 0.19.0
* accesskit_macos bumped from 0.13.2 to 0.14.0
* accesskit_unix bumped from 0.9.2 to 0.10.0

## [0.3.1](https://github.com/AccessKit/accesskit/compare/accesskit_python-v0.3.0...accesskit_python-v0.3.1) (2024-05-11)


Expand Down
8 changes: 4 additions & 4 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.3.2"
version = "0.3.3"
authors.workspace = true
license.workspace = true
description = "Python bindings to the AccessKit library"
Expand All @@ -21,10 +21,10 @@ accesskit = { version = "0.14.0", path = "../../common", features = ["pyo3"] }
pyo3 = { version = "0.20", features = ["abi3-py38", "multiple-pymethods"] }

[target.'cfg(target_os = "windows")'.dependencies]
accesskit_windows = { version = "0.18.2", path = "../../platforms/windows" }
accesskit_windows = { version = "0.19.0", path = "../../platforms/windows" }

[target.'cfg(target_os = "macos")'.dependencies]
accesskit_macos = { version = "0.13.2", path = "../../platforms/macos" }
accesskit_macos = { version = "0.14.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.9.2", path = "../../platforms/unix" }
accesskit_unix = { version = "0.10.0", path = "../../platforms/unix" }
16 changes: 16 additions & 0 deletions consumer/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,22 @@
* dependencies
* accesskit bumped from 0.12.2 to 0.12.3

## [0.21.0](https://github.com/AccessKit/accesskit/compare/accesskit_consumer-v0.20.0...accesskit_consumer-v0.21.0) (2024-05-26)


### Features

* Add basic text support on Unix ([#362](https://github.com/AccessKit/accesskit/issues/362)) ([52540f8](https://github.com/AccessKit/accesskit/commit/52540f82cf9fc148358351ed486bab3e7e91f1d6))
* Expose the `placeholder` property ([#417](https://github.com/AccessKit/accesskit/issues/417)) ([8f4a0a1](https://github.com/AccessKit/accesskit/commit/8f4a0a1c10f83fcc8580a37d8013fec2d110865b))


### Bug Fixes

* Clamp character indices when converting a text selection to a range ([#416](https://github.com/AccessKit/accesskit/issues/416)) ([5c550af](https://github.com/AccessKit/accesskit/commit/5c550af7afc81b3a32c30d31327ff95b93718545))
* Fix a logic error that sometimes caused filtered traversal to stop prematurely ([#412](https://github.com/AccessKit/accesskit/issues/412)) ([9946d38](https://github.com/AccessKit/accesskit/commit/9946d38b9d13489517713f43284cf6b96d88cb8c))
* Go back to detecting unchanged nodes when processing tree updates ([#415](https://github.com/AccessKit/accesskit/issues/415)) ([489302d](https://github.com/AccessKit/accesskit/commit/489302db7143a016605145682b989ab18583d59c))
* Update minimum version of immutable-chunkmap ([#419](https://github.com/AccessKit/accesskit/issues/419)) ([893f688](https://github.com/AccessKit/accesskit/commit/893f68845dd322da5f3ae4d39fc2b1cc01f88888))

## [0.20.0](https://github.com/AccessKit/accesskit/compare/accesskit_consumer-v0.19.1...accesskit_consumer-v0.20.0) (2024-05-13)


Expand Down
2 changes: 1 addition & 1 deletion consumer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "accesskit_consumer"
version = "0.20.0"
version = "0.21.0"
authors.workspace = true
license.workspace = true
description = "AccessKit consumer library (internal)"
Expand Down
21 changes: 21 additions & 0 deletions platforms/atspi-common/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,27 @@
* dependencies
* accesskit_consumer bumped from 0.19.0 to 0.19.1

## [0.5.0](https://github.com/AccessKit/accesskit/compare/accesskit_atspi_common-v0.4.2...accesskit_atspi_common-v0.5.0) (2024-05-26)


### Features

* Add basic text support on Unix ([#362](https://github.com/AccessKit/accesskit/issues/362)) ([52540f8](https://github.com/AccessKit/accesskit/commit/52540f82cf9fc148358351ed486bab3e7e91f1d6))
* Expose the `placeholder` property ([#417](https://github.com/AccessKit/accesskit/issues/417)) ([8f4a0a1](https://github.com/AccessKit/accesskit/commit/8f4a0a1c10f83fcc8580a37d8013fec2d110865b))


### Bug Fixes

* Don't fire events for filtered children on Unix ([#414](https://github.com/AccessKit/accesskit/issues/414)) ([2bcb1b6](https://github.com/AccessKit/accesskit/commit/2bcb1b63e88b801b194a4db50059fa063efbee64))
* Improve how coordinates are computed on Unix ([#420](https://github.com/AccessKit/accesskit/issues/420)) ([fc5125e](https://github.com/AccessKit/accesskit/commit/fc5125e27f8f4f655e1de5049d0d53536284d9a0))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* accesskit_consumer bumped from 0.20.0 to 0.21.0

## [0.4.2](https://github.com/AccessKit/accesskit/compare/accesskit_atspi_common-v0.4.1...accesskit_atspi_common-v0.4.2) (2024-05-13)


Expand Down
4 changes: 2 additions & 2 deletions platforms/atspi-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "accesskit_atspi_common"
version = "0.4.2"
version = "0.5.0"
authors.workspace = true
license.workspace = true
description = "AccessKit UI accessibility infrastructure: core AT-SPI translation layer"
Expand All @@ -13,7 +13,7 @@ rust-version.workspace = true

[dependencies]
accesskit = { version = "0.14.0", path = "../../common" }
accesskit_consumer = { version = "0.20.0", path = "../../consumer" }
accesskit_consumer = { version = "0.21.0", path = "../../consumer" }
atspi-common = { version = "0.3.0", default-features = false }
serde = "1.0"
thiserror = "1.0.39"
Expand Down
14 changes: 14 additions & 0 deletions platforms/macos/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,20 @@
* dependencies
* accesskit_consumer bumped from 0.19.0 to 0.19.1

## [0.14.0](https://github.com/AccessKit/accesskit/compare/accesskit_macos-v0.13.2...accesskit_macos-v0.14.0) (2024-05-26)


### Features

* Expose the `placeholder` property ([#417](https://github.com/AccessKit/accesskit/issues/417)) ([8f4a0a1](https://github.com/AccessKit/accesskit/commit/8f4a0a1c10f83fcc8580a37d8013fec2d110865b))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* accesskit_consumer bumped from 0.20.0 to 0.21.0

## [0.13.2](https://github.com/AccessKit/accesskit/compare/accesskit_macos-v0.13.1...accesskit_macos-v0.13.2) (2024-05-13)


Expand Down
4 changes: 2 additions & 2 deletions platforms/macos/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "accesskit_macos"
version = "0.13.2"
version = "0.14.0"
authors.workspace = true
license.workspace = true
description = "AccessKit UI accessibility infrastructure: macOS adapter"
Expand All @@ -16,7 +16,7 @@ default-target = "x86_64-apple-darwin"

[dependencies]
accesskit = { version = "0.14.0", path = "../../common" }
accesskit_consumer = { version = "0.20.0", path = "../../consumer" }
accesskit_consumer = { version = "0.21.0", path = "../../consumer" }
once_cell = "1.13.0"
objc2 = "0.5.1"
objc2-foundation = { version = "0.2.0", features = [
Expand Down
15 changes: 15 additions & 0 deletions platforms/unix/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,21 @@
* dependencies
* accesskit_atspi_common bumped from 0.4.1 to 0.4.2

## [0.10.0](https://github.com/AccessKit/accesskit/compare/accesskit_unix-v0.9.2...accesskit_unix-v0.10.0) (2024-05-26)


### Features

* Add basic text support on Unix ([#362](https://github.com/AccessKit/accesskit/issues/362)) ([52540f8](https://github.com/AccessKit/accesskit/commit/52540f82cf9fc148358351ed486bab3e7e91f1d6))
* Expose the `placeholder` property ([#417](https://github.com/AccessKit/accesskit/issues/417)) ([8f4a0a1](https://github.com/AccessKit/accesskit/commit/8f4a0a1c10f83fcc8580a37d8013fec2d110865b))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* accesskit_atspi_common bumped from 0.4.2 to 0.5.0

## [0.9.0](https://github.com/AccessKit/accesskit/compare/accesskit_unix-v0.8.0...accesskit_unix-v0.9.0) (2024-04-30)


Expand Down
4 changes: 2 additions & 2 deletions platforms/unix/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "accesskit_unix"
version = "0.9.2"
version = "0.10.0"
authors.workspace = true
license.workspace = true
description = "AccessKit UI accessibility infrastructure: Linux adapter"
Expand All @@ -18,7 +18,7 @@ tokio = ["dep:tokio", "dep:tokio-stream", "atspi/tokio", "zbus/tokio"]

[dependencies]
accesskit = { version = "0.14.0", path = "../../common" }
accesskit_atspi_common = { version = "0.4.2", path = "../atspi-common" }
accesskit_atspi_common = { version = "0.5.0", path = "../atspi-common" }
atspi = { version = "0.19", default-features = false }
futures-lite = "1.13"
serde = "1.0"
Expand Down
14 changes: 14 additions & 0 deletions platforms/windows/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,20 @@
* accesskit bumped from 0.12.2 to 0.12.3
* accesskit_consumer bumped from 0.17.0 to 0.17.1

## [0.19.0](https://github.com/AccessKit/accesskit/compare/accesskit_windows-v0.18.2...accesskit_windows-v0.19.0) (2024-05-26)


### Features

* Expose the `placeholder` property ([#417](https://github.com/AccessKit/accesskit/issues/417)) ([8f4a0a1](https://github.com/AccessKit/accesskit/commit/8f4a0a1c10f83fcc8580a37d8013fec2d110865b))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* accesskit_consumer bumped from 0.20.0 to 0.21.0

## [0.18.2](https://github.com/AccessKit/accesskit/compare/accesskit_windows-v0.18.1...accesskit_windows-v0.18.2) (2024-05-13)


Expand Down
4 changes: 2 additions & 2 deletions platforms/windows/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "accesskit_windows"
version = "0.18.2"
version = "0.19.0"
authors.workspace = true
license.workspace = true
description = "AccessKit UI accessibility infrastructure: Windows adapter"
Expand All @@ -13,7 +13,7 @@ rust-version.workspace = true

[dependencies]
accesskit = { version = "0.14.0", path = "../../common" }
accesskit_consumer = { version = "0.20.0", path = "../../consumer" }
accesskit_consumer = { version = "0.21.0", path = "../../consumer" }
paste = "1.0"
static_assertions = "1.1.0"

Expand Down
6 changes: 6 additions & 0 deletions platforms/winit/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,12 @@
* accesskit_macos bumped from 0.13.1 to 0.13.2
* accesskit_unix bumped from 0.9.1 to 0.9.2

* The following workspace dependencies were updated
* dependencies
* accesskit_windows bumped from 0.18.2 to 0.19.0
* accesskit_macos bumped from 0.13.2 to 0.14.0
* accesskit_unix bumped from 0.9.2 to 0.10.0

## [0.20.0](https://github.com/AccessKit/accesskit/compare/accesskit_winit-v0.19.0...accesskit_winit-v0.20.0) (2024-04-30)


Expand Down
8 changes: 4 additions & 4 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.20.2"
version = "0.20.3"
authors.workspace = true
license = "Apache-2.0"
description = "AccessKit UI accessibility infrastructure: winit adapter"
Expand Down Expand Up @@ -28,13 +28,13 @@ rwh_05 = { package = "raw-window-handle", version = "0.5", features = ["std"], o
rwh_06 = { package = "raw-window-handle", version = "0.6", features = ["std"], optional = true }

[target.'cfg(target_os = "windows")'.dependencies]
accesskit_windows = { version = "0.18.2", path = "../windows" }
accesskit_windows = { version = "0.19.0", path = "../windows" }

[target.'cfg(target_os = "macos")'.dependencies]
accesskit_macos = { version = "0.13.2", path = "../macos" }
accesskit_macos = { version = "0.14.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.9.2", path = "../unix", optional = true, default-features = false }
accesskit_unix = { version = "0.10.0", path = "../unix", optional = true, default-features = false }

[dev-dependencies.winit]
version = "0.30"
Expand Down

0 comments on commit 88151c9

Please sign in to comment.