Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.1","consumer":"0.16.1","platforms/macos":"0.10.1","platforms/windows":"0.15.1","platforms/winit":"0.17.0","platforms/unix":"0.6.2","bindings/c":"0.6.2"}
{"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.0"}
14 changes: 7 additions & 7 deletions Cargo.lock

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

21 changes: 21 additions & 0 deletions bindings/c/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,27 @@
* dependencies
* accesskit_unix bumped from 0.6.1 to 0.6.2

## [0.7.0](https://github.com/AccessKit/accesskit/compare/accesskit_c-v0.6.2...accesskit_c-v0.7.0) (2024-01-03)


### ⚠ BREAKING CHANGES

* Lazily activate Unix adapters ([#324](https://github.com/AccessKit/accesskit/issues/324))

### Bug Fixes

* Lazily activate Unix adapters ([#324](https://github.com/AccessKit/accesskit/issues/324)) ([54ed036](https://github.com/AccessKit/accesskit/commit/54ed036c99d87428a8eb5bb03fd77e9e31562d4c))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* accesskit bumped from 0.12.1 to 0.12.2
* accesskit_windows bumped from 0.15.1 to 0.16.0
* accesskit_macos bumped from 0.10.1 to 0.11.0
* accesskit_unix bumped from 0.6.2 to 0.7.0

## [0.6.0](https://github.com/AccessKit/accesskit/compare/accesskit_c-v0.5.1...accesskit_c-v0.6.0) (2023-09-27)


Expand Down
10 changes: 5 additions & 5 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.6.2"
version = "0.7.0"
authors = ["Arnold Loubriat <datatriny@gmail.com>"]
license = "MIT OR Apache-2.0"
publish = false
Expand All @@ -15,14 +15,14 @@ doc = false
cbindgen = []

[dependencies]
accesskit = { version = "0.12.1", path = "../../common" }
accesskit = { version = "0.12.2", path = "../../common" }
paste = "1.0"

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

[target.'cfg(target_os = "macos")'.dependencies]
accesskit_macos = { version = "0.10.1", path = "../../platforms/macos" }
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.6.2", path = "../../platforms/unix" }
accesskit_unix = { version = "0.7.0", path = "../../platforms/unix" }
18 changes: 18 additions & 0 deletions bindings/python/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Changelog

## 0.1.0 (2024-01-03)


### Features

* Add Python bindings ([#269](https://github.com/AccessKit/accesskit/issues/269)) ([52560da](https://github.com/AccessKit/accesskit/commit/52560da1c1480f1a37a27906b24b518a5fa03249))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* accesskit bumped from 0.12.1 to 0.12.2
* accesskit_windows bumped from 0.15.1 to 0.16.0
* accesskit_macos bumped from 0.10.1 to 0.11.0
* accesskit_unix bumped from 0.6.2 to 0.7.0
8 changes: 4 additions & 4 deletions bindings/python/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ doc = false
extension-module = ["pyo3/extension-module"]

[dependencies]
accesskit = { version = "0.12.1", path = "../../common", features = ["pyo3"] }
accesskit = { version = "0.12.2", path = "../../common", features = ["pyo3"] }
pyo3 = { version = "0.20", features = ["abi3-py39", "multiple-pymethods"] }

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

[target.'cfg(target_os = "macos")'.dependencies]
accesskit_macos = { version = "0.10.1", path = "../../platforms/macos" }
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.6.2", path = "../../platforms/unix" }
accesskit_unix = { version = "0.7.0", path = "../../platforms/unix" }
8 changes: 8 additions & 0 deletions common/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [0.12.2](https://github.com/AccessKit/accesskit/compare/accesskit-v0.12.1...accesskit-v0.12.2) (2024-01-03)


### Bug Fixes

* Bump pyo3; add `rename_all` attribute to enums ([#330](https://github.com/AccessKit/accesskit/issues/330)) ([5a4c6f3](https://github.com/AccessKit/accesskit/commit/5a4c6f399837d67b066451a8fb4d43d03c8acb8b))
* Document the `role_description` node property ([#331](https://github.com/AccessKit/accesskit/issues/331)) ([936fa2c](https://github.com/AccessKit/accesskit/commit/936fa2c23190c5d7cd4eb880612295785a009721))

## [0.12.1](https://github.com/AccessKit/accesskit/compare/accesskit-v0.12.0...accesskit-v0.12.1) (2023-11-04)


Expand Down
2 changes: 1 addition & 1 deletion common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "accesskit"
version = "0.12.1"
version = "0.12.2"
authors = ["Matt Campbell <mattcampbell@pobox.com>"]
license = "MIT OR Apache-2.0"
description = "UI accessibility infrastructure across platforms"
Expand Down
14 changes: 14 additions & 0 deletions consumer/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,20 @@
* dependencies
* accesskit bumped from 0.11.1 to 0.11.2

## [0.17.0](https://github.com/AccessKit/accesskit/compare/accesskit_consumer-v0.16.1...accesskit_consumer-v0.17.0) (2024-01-03)


### Features

* Support custom role descriptions ([#316](https://github.com/AccessKit/accesskit/issues/316)) ([c8d1a56](https://github.com/AccessKit/accesskit/commit/c8d1a5638fa6c33adfa059815c04f7e043c56026))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* accesskit bumped from 0.12.1 to 0.12.2

## [0.16.1](https://github.com/AccessKit/accesskit/compare/accesskit_consumer-v0.16.0...accesskit_consumer-v0.16.1) (2023-11-04)


Expand Down
4 changes: 2 additions & 2 deletions consumer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "accesskit_consumer"
version = "0.16.1"
version = "0.17.0"
authors = ["Matt Campbell <mattcampbell@pobox.com>"]
license = "MIT OR Apache-2.0"
description = "AccessKit consumer library (internal)"
Expand All @@ -11,5 +11,5 @@ readme = "README.md"
edition = "2021"

[dependencies]
accesskit = { version = "0.12.1", path = "../common" }
accesskit = { version = "0.12.2", path = "../common" }

20 changes: 20 additions & 0 deletions platforms/macos/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,26 @@
* accesskit bumped from 0.12.0 to 0.12.1
* accesskit_consumer bumped from 0.16.0 to 0.16.1

## [0.11.0](https://github.com/AccessKit/accesskit/compare/accesskit_macos-v0.10.1...accesskit_macos-v0.11.0) (2024-01-03)


### Features

* Support custom role descriptions ([#316](https://github.com/AccessKit/accesskit/issues/316)) ([c8d1a56](https://github.com/AccessKit/accesskit/commit/c8d1a5638fa6c33adfa059815c04f7e043c56026))


### Bug Fixes

* Bump objc2 to 0.5.0; bring icrate 0.1.0 ([#323](https://github.com/AccessKit/accesskit/issues/323)) ([23b3f2f](https://github.com/AccessKit/accesskit/commit/23b3f2f93b9452c80374d1da3e9abeaec60ba9bf))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* accesskit bumped from 0.12.1 to 0.12.2
* accesskit_consumer bumped from 0.16.1 to 0.17.0

## [0.10.0](https://github.com/AccessKit/accesskit/compare/accesskit_macos-v0.9.0...accesskit_macos-v0.10.0) (2023-09-27)


Expand Down
6 changes: 3 additions & 3 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.10.1"
version = "0.11.0"
authors = ["Matt Campbell <mattcampbell@pobox.com>"]
license = "MIT OR Apache-2.0"
description = "AccessKit UI accessibility infrastructure: macOS adapter"
Expand All @@ -14,8 +14,8 @@ edition = "2021"
default-target = "x86_64-apple-darwin"

[dependencies]
accesskit = { version = "0.12.1", path = "../../common" }
accesskit_consumer = { version = "0.16.1", path = "../../consumer" }
accesskit = { version = "0.12.2", path = "../../common" }
accesskit_consumer = { version = "0.17.0", path = "../../consumer" }
objc2 = "0.5.0"
once_cell = "1.13.0"

Expand Down
24 changes: 24 additions & 0 deletions platforms/unix/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,30 @@
* accesskit bumped from 0.12.0 to 0.12.1
* accesskit_consumer bumped from 0.16.0 to 0.16.1

## [0.7.0](https://github.com/AccessKit/accesskit/compare/accesskit_unix-v0.6.2...accesskit_unix-v0.7.0) (2024-01-03)


### ⚠ BREAKING CHANGES

* Lazily activate Unix adapters ([#324](https://github.com/AccessKit/accesskit/issues/324))

### Features

* Support custom role descriptions ([#316](https://github.com/AccessKit/accesskit/issues/316)) ([c8d1a56](https://github.com/AccessKit/accesskit/commit/c8d1a5638fa6c33adfa059815c04f7e043c56026))


### Bug Fixes

* Lazily activate Unix adapters ([#324](https://github.com/AccessKit/accesskit/issues/324)) ([54ed036](https://github.com/AccessKit/accesskit/commit/54ed036c99d87428a8eb5bb03fd77e9e31562d4c))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* accesskit bumped from 0.12.1 to 0.12.2
* accesskit_consumer bumped from 0.16.1 to 0.17.0

## [0.6.2](https://github.com/AccessKit/accesskit/compare/accesskit_unix-v0.6.1...accesskit_unix-v0.6.2) (2023-12-14)


Expand Down
6 changes: 3 additions & 3 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.6.2"
version = "0.7.0"
authors = ["Arnold Loubriat <datatriny@gmail.com>"]
license = "MIT OR Apache-2.0"
description = "AccessKit UI accessibility infrastructure: Linux adapter"
Expand All @@ -16,8 +16,8 @@ async-io = ["atspi/async-std", "zbus/async-io"]
tokio = ["dep:tokio", "atspi/tokio", "zbus/tokio"]

[dependencies]
accesskit = { version = "0.12.1", path = "../../common" }
accesskit_consumer = { version = "0.16.1", path = "../../consumer" }
accesskit = { version = "0.12.2", path = "../../common" }
accesskit_consumer = { version = "0.17.0", path = "../../consumer" }
async-channel = "2.1.1"
async-lock = "2.7.0"
async-once-cell = "0.5.3"
Expand Down
15 changes: 15 additions & 0 deletions platforms/windows/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,21 @@
* accesskit bumped from 0.11.1 to 0.11.2
* accesskit_consumer bumped from 0.15.1 to 0.15.2

## [0.16.0](https://github.com/AccessKit/accesskit/compare/accesskit_windows-v0.15.1...accesskit_windows-v0.16.0) (2024-01-03)


### Features

* Support custom role descriptions ([#316](https://github.com/AccessKit/accesskit/issues/316)) ([c8d1a56](https://github.com/AccessKit/accesskit/commit/c8d1a5638fa6c33adfa059815c04f7e043c56026))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* accesskit bumped from 0.12.1 to 0.12.2
* accesskit_consumer bumped from 0.16.1 to 0.17.0

## [0.15.1](https://github.com/AccessKit/accesskit/compare/accesskit_windows-v0.15.0...accesskit_windows-v0.15.1) (2023-11-04)


Expand Down
6 changes: 3 additions & 3 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.15.1"
version = "0.16.0"
authors = ["Matt Campbell <mattcampbell@pobox.com>"]
license = "MIT OR Apache-2.0"
description = "AccessKit UI accessibility infrastructure: Windows adapter"
Expand All @@ -11,8 +11,8 @@ readme = "README.md"
edition = "2021"

[dependencies]
accesskit = { version = "0.12.1", path = "../../common" }
accesskit_consumer = { version = "0.16.1", path = "../../consumer" }
accesskit = { version = "0.12.2", path = "../../common" }
accesskit_consumer = { version = "0.17.0", path = "../../consumer" }
once_cell = "1.13.0"
paste = "1.0"
static_assertions = "1.1.0"
Expand Down
23 changes: 23 additions & 0 deletions platforms/winit/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,29 @@
* dependencies
* accesskit_windows bumped from 0.14.2 to 0.14.3

## [0.18.0](https://github.com/AccessKit/accesskit/compare/accesskit_winit-v0.17.0...accesskit_winit-v0.18.0) (2024-01-03)


### ⚠ BREAKING CHANGES

* Lazily activate Unix adapters ([#324](https://github.com/AccessKit/accesskit/issues/324))
* Remove `accesskit_winit::Adapter::update` ([#325](https://github.com/AccessKit/accesskit/issues/325))

### Bug Fixes

* Lazily activate Unix adapters ([#324](https://github.com/AccessKit/accesskit/issues/324)) ([54ed036](https://github.com/AccessKit/accesskit/commit/54ed036c99d87428a8eb5bb03fd77e9e31562d4c))
* Remove `accesskit_winit::Adapter::update` ([#325](https://github.com/AccessKit/accesskit/issues/325)) ([f121bff](https://github.com/AccessKit/accesskit/commit/f121bffe9e651fd2ac6deb882f57e1c9b613b7eb))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* accesskit bumped from 0.12.1 to 0.12.2
* accesskit_windows bumped from 0.15.1 to 0.16.0
* accesskit_macos bumped from 0.10.1 to 0.11.0
* accesskit_unix bumped from 0.6.2 to 0.7.0

## [0.17.0](https://github.com/AccessKit/accesskit/compare/accesskit_winit-v0.16.1...accesskit_winit-v0.17.0) (2023-12-14)


Expand Down
Loading