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.22.0","consumer":"0.32.0","platforms/macos":"0.23.0","platforms/windows":"0.30.0","platforms/winit":"0.30.0","platforms/unix":"0.18.0","platforms/atspi-common":"0.15.0","platforms/android":"0.5.0"}
{"common":"0.23.0","consumer":"0.33.0","platforms/macos":"0.24.0","platforms/windows":"0.31.0","platforms/winit":"0.31.0","platforms/unix":"0.19.0","platforms/atspi-common":"0.16.0","platforms/android":"0.6.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.

22 changes: 22 additions & 0 deletions common/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# Changelog

## [0.23.0](https://github.com/AccessKit/accesskit/compare/accesskit-v0.22.0...accesskit-v0.23.0) (2026-01-15)


### ⚠ BREAKING CHANGES

* Store text decoration style and color in a struct ([#674](https://github.com/AccessKit/accesskit/issues/674))
* Multiple tree support ([#655](https://github.com/AccessKit/accesskit/issues/655))

### Features

* Multiple tree support ([#655](https://github.com/AccessKit/accesskit/issues/655)) ([c16eb80](https://github.com/AccessKit/accesskit/commit/c16eb80c49d14f39e8a7defb1694bf22b8ceed6f))


### Bug Fixes

* Implement the `active_descendant` property ([#675](https://github.com/AccessKit/accesskit/issues/675)) ([863755d](https://github.com/AccessKit/accesskit/commit/863755d6898c7006a5f49c3661a26cb62d837d1b))


### Code Refactoring

* Store text decoration style and color in a struct ([#674](https://github.com/AccessKit/accesskit/issues/674)) ([c2e8487](https://github.com/AccessKit/accesskit/commit/c2e8487d0a243da0d1c996887fb4c9a7e3beacc7))

## [0.22.0](https://github.com/AccessKit/accesskit/compare/accesskit-v0.21.1...accesskit-v0.22.0) (2025-12-23)


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.22.0"
version = "0.23.0"
authors.workspace = true
license.workspace = true
description = "UI accessibility infrastructure across platforms"
Expand Down
30 changes: 30 additions & 0 deletions consumer/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,36 @@
* dependencies
* accesskit bumped from 0.16.2 to 0.16.3

## [0.33.0](https://github.com/AccessKit/accesskit/compare/accesskit_consumer-v0.32.0...accesskit_consumer-v0.33.0) (2026-01-15)


### ⚠ BREAKING CHANGES

* Store text decoration style and color in a struct ([#674](https://github.com/AccessKit/accesskit/issues/674))
* Multiple tree support ([#655](https://github.com/AccessKit/accesskit/issues/655))

### Features

* Implement the `url` property ([#669](https://github.com/AccessKit/accesskit/issues/669)) ([6202e63](https://github.com/AccessKit/accesskit/commit/6202e63c667e73216a306b3dd45ff25c364a4f45))
* Multiple tree support ([#655](https://github.com/AccessKit/accesskit/issues/655)) ([c16eb80](https://github.com/AccessKit/accesskit/commit/c16eb80c49d14f39e8a7defb1694bf22b8ceed6f))


### Bug Fixes

* Implement the `active_descendant` property ([#675](https://github.com/AccessKit/accesskit/issues/675)) ([863755d](https://github.com/AccessKit/accesskit/commit/863755d6898c7006a5f49c3661a26cb62d837d1b))


### Code Refactoring

* Store text decoration style and color in a struct ([#674](https://github.com/AccessKit/accesskit/issues/674)) ([c2e8487](https://github.com/AccessKit/accesskit/commit/c2e8487d0a243da0d1c996887fb4c9a7e3beacc7))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* accesskit bumped from 0.22.0 to 0.23.0

## [0.32.0](https://github.com/AccessKit/accesskit/compare/accesskit_consumer-v0.31.0...accesskit_consumer-v0.32.0) (2025-12-23)


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.32.0"
version = "0.33.0"
authors.workspace = true
license.workspace = true
description = "AccessKit consumer library (internal)"
Expand All @@ -12,5 +12,5 @@ edition.workspace = true
rust-version.workspace = true

[dependencies]
accesskit = { version = "0.22.0", path = "../common" }
accesskit = { version = "0.23.0", path = "../common" }
hashbrown.workspace = true
20 changes: 20 additions & 0 deletions platforms/android/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# Changelog

## [0.6.0](https://github.com/AccessKit/accesskit/compare/accesskit_android-v0.5.0...accesskit_android-v0.6.0) (2026-01-15)


### ⚠ BREAKING CHANGES

* Multiple tree support ([#655](https://github.com/AccessKit/accesskit/issues/655))

### Features

* Implement the `url` property ([#669](https://github.com/AccessKit/accesskit/issues/669)) ([6202e63](https://github.com/AccessKit/accesskit/commit/6202e63c667e73216a306b3dd45ff25c364a4f45))
* Multiple tree support ([#655](https://github.com/AccessKit/accesskit/issues/655)) ([c16eb80](https://github.com/AccessKit/accesskit/commit/c16eb80c49d14f39e8a7defb1694bf22b8ceed6f))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* accesskit bumped from 0.22.0 to 0.23.0
* accesskit_consumer bumped from 0.32.0 to 0.33.0

## [0.5.0](https://github.com/AccessKit/accesskit/compare/accesskit_android-v0.4.2...accesskit_android-v0.5.0) (2025-12-23)


Expand Down
6 changes: 3 additions & 3 deletions platforms/android/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "accesskit_android"
version = "0.5.0"
version = "0.6.0"
authors.workspace = true
license.workspace = true
description = "AccessKit UI accessibility infrastructure: Android adapter"
Expand All @@ -15,8 +15,8 @@ rust-version.workspace = true
embedded-dex = []

[dependencies]
accesskit = { version = "0.22.0", path = "../../common" }
accesskit_consumer = { version = "0.32.0", path = "../../consumer" }
accesskit = { version = "0.23.0", path = "../../common" }
accesskit_consumer = { version = "0.33.0", path = "../../consumer" }
jni = "0.21.1"
log = "0.4.17"

20 changes: 20 additions & 0 deletions platforms/atspi-common/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,26 @@
* accesskit bumped from 0.17.0 to 0.17.1
* accesskit_consumer bumped from 0.25.0 to 0.26.0

## [0.16.0](https://github.com/AccessKit/accesskit/compare/accesskit_atspi_common-v0.15.0...accesskit_atspi_common-v0.16.0) (2026-01-15)


### ⚠ BREAKING CHANGES

* Multiple tree support ([#655](https://github.com/AccessKit/accesskit/issues/655))

### Features

* Implement the `url` property ([#669](https://github.com/AccessKit/accesskit/issues/669)) ([6202e63](https://github.com/AccessKit/accesskit/commit/6202e63c667e73216a306b3dd45ff25c364a4f45))
* Multiple tree support ([#655](https://github.com/AccessKit/accesskit/issues/655)) ([c16eb80](https://github.com/AccessKit/accesskit/commit/c16eb80c49d14f39e8a7defb1694bf22b8ceed6f))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* accesskit bumped from 0.22.0 to 0.23.0
* accesskit_consumer bumped from 0.32.0 to 0.33.0

## [0.15.0](https://github.com/AccessKit/accesskit/compare/accesskit_atspi_common-v0.14.2...accesskit_atspi_common-v0.15.0) (2025-12-23)


Expand Down
6 changes: 3 additions & 3 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.15.0"
version = "0.16.0"
authors.workspace = true
license.workspace = true
description = "AccessKit UI accessibility infrastructure: core AT-SPI translation layer"
Expand All @@ -15,8 +15,8 @@ rust-version.workspace = true
simplified-api = []

[dependencies]
accesskit = { version = "0.22.0", path = "../../common" }
accesskit_consumer = { version = "0.32.0", path = "../../consumer" }
accesskit = { version = "0.23.0", path = "../../common" }
accesskit_consumer = { version = "0.33.0", path = "../../consumer" }
atspi-common = { version = "0.13", default-features = false }
serde = "1.0"
zvariant = { version = "5.4", default-features = false }
Expand Down
20 changes: 20 additions & 0 deletions platforms/macos/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,26 @@
* accesskit bumped from 0.16.2 to 0.16.3
* accesskit_consumer bumped from 0.24.2 to 0.24.3

## [0.24.0](https://github.com/AccessKit/accesskit/compare/accesskit_macos-v0.23.0...accesskit_macos-v0.24.0) (2026-01-15)


### ⚠ BREAKING CHANGES

* Multiple tree support ([#655](https://github.com/AccessKit/accesskit/issues/655))

### Features

* Implement the `url` property ([#669](https://github.com/AccessKit/accesskit/issues/669)) ([6202e63](https://github.com/AccessKit/accesskit/commit/6202e63c667e73216a306b3dd45ff25c364a4f45))
* Multiple tree support ([#655](https://github.com/AccessKit/accesskit/issues/655)) ([c16eb80](https://github.com/AccessKit/accesskit/commit/c16eb80c49d14f39e8a7defb1694bf22b8ceed6f))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* accesskit bumped from 0.22.0 to 0.23.0
* accesskit_consumer bumped from 0.32.0 to 0.33.0

## [0.23.0](https://github.com/AccessKit/accesskit/compare/accesskit_macos-v0.22.2...accesskit_macos-v0.23.0) (2025-12-23)


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.23.0"
version = "0.24.0"
authors.workspace = true
license.workspace = true
description = "AccessKit UI accessibility infrastructure: macOS adapter"
Expand All @@ -15,8 +15,8 @@ rust-version.workspace = true
default-target = "x86_64-apple-darwin"

[dependencies]
accesskit = { version = "0.22.0", path = "../../common" }
accesskit_consumer = { version = "0.32.0", path = "../../consumer" }
accesskit = { version = "0.23.0", path = "../../common" }
accesskit_consumer = { version = "0.33.0", path = "../../consumer" }
hashbrown.workspace = true
objc2 = "0.5.1"
objc2-foundation = { version = "0.2.0", features = [
Expand Down
20 changes: 20 additions & 0 deletions platforms/unix/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,26 @@
* accesskit bumped from 0.17.0 to 0.17.1
* accesskit_atspi_common bumped from 0.10.0 to 0.10.1

## [0.19.0](https://github.com/AccessKit/accesskit/compare/accesskit_unix-v0.18.0...accesskit_unix-v0.19.0) (2026-01-15)


### ⚠ BREAKING CHANGES

* Multiple tree support ([#655](https://github.com/AccessKit/accesskit/issues/655))

### Features

* Implement the `url` property ([#669](https://github.com/AccessKit/accesskit/issues/669)) ([6202e63](https://github.com/AccessKit/accesskit/commit/6202e63c667e73216a306b3dd45ff25c364a4f45))
* Multiple tree support ([#655](https://github.com/AccessKit/accesskit/issues/655)) ([c16eb80](https://github.com/AccessKit/accesskit/commit/c16eb80c49d14f39e8a7defb1694bf22b8ceed6f))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* accesskit bumped from 0.22.0 to 0.23.0
* accesskit_atspi_common bumped from 0.15.0 to 0.16.0

## [0.18.0](https://github.com/AccessKit/accesskit/compare/accesskit_unix-v0.17.2...accesskit_unix-v0.18.0) (2025-12-23)


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.18.0"
version = "0.19.0"
authors.workspace = true
license.workspace = true
description = "AccessKit UI accessibility infrastructure: Linux adapter"
Expand All @@ -17,8 +17,8 @@ async-io = ["dep:async-channel", "dep:async-executor", "dep:async-task", "dep:fu
tokio = ["dep:tokio", "dep:tokio-stream"]

[dependencies]
accesskit = { version = "0.22.0", path = "../../common" }
accesskit_atspi_common = { version = "0.15.0", path = "../atspi-common" }
accesskit = { version = "0.23.0", path = "../../common" }
accesskit_atspi_common = { version = "0.16.0", path = "../atspi-common" }
atspi = { version = "0.29", default-features = false, features = ["proxies"] }
futures-lite = "2.3"
serde = "1.0"
Expand Down
21 changes: 21 additions & 0 deletions platforms/windows/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,27 @@
* accesskit bumped from 0.16.2 to 0.16.3
* accesskit_consumer bumped from 0.24.2 to 0.24.3

## [0.31.0](https://github.com/AccessKit/accesskit/compare/accesskit_windows-v0.30.0...accesskit_windows-v0.31.0) (2026-01-15)


### ⚠ BREAKING CHANGES

* Multiple tree support ([#655](https://github.com/AccessKit/accesskit/issues/655))

### Features

* Implement the `url` property ([#669](https://github.com/AccessKit/accesskit/issues/669)) ([6202e63](https://github.com/AccessKit/accesskit/commit/6202e63c667e73216a306b3dd45ff25c364a4f45))
* More text attributes on Windows ([#676](https://github.com/AccessKit/accesskit/issues/676)) ([259e832](https://github.com/AccessKit/accesskit/commit/259e83271371007d7564588939c6aafd0b7b3ac0))
* Multiple tree support ([#655](https://github.com/AccessKit/accesskit/issues/655)) ([c16eb80](https://github.com/AccessKit/accesskit/commit/c16eb80c49d14f39e8a7defb1694bf22b8ceed6f))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* accesskit bumped from 0.22.0 to 0.23.0
* accesskit_consumer bumped from 0.32.0 to 0.33.0

## [0.30.0](https://github.com/AccessKit/accesskit/compare/accesskit_windows-v0.29.2...accesskit_windows-v0.30.0) (2025-12-23)


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.30.0"
version = "0.31.0"
authors.workspace = true
license.workspace = true
description = "AccessKit UI accessibility infrastructure: Windows adapter"
Expand All @@ -16,8 +16,8 @@ default-target = "x86_64-pc-windows-msvc"
targets = []

[dependencies]
accesskit = { version = "0.22.0", path = "../../common" }
accesskit_consumer = { version = "0.32.0", path = "../../consumer" }
accesskit = { version = "0.23.0", path = "../../common" }
accesskit_consumer = { version = "0.33.0", path = "../../consumer" }
hashbrown.workspace = true
static_assertions = "1.1.0"
windows-core = "0.61.0"
Expand Down
Loading