Skip to content

Commit 30b86ab

Browse files
committed
chore: release main
1 parent 70b534b commit 30b86ab

File tree

18 files changed

+148
-33
lines changed

18 files changed

+148
-33
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"common":"0.20.0","consumer":"0.29.0","platforms/macos":"0.21.0","platforms/windows":"0.28.0","platforms/winit":"0.28.0","platforms/unix":"0.16.0","platforms/atspi-common":"0.13.0","platforms/android":"0.3.0"}
1+
{"common":"0.21.0","consumer":"0.30.0","platforms/macos":"0.22.0","platforms/windows":"0.29.0","platforms/winit":"0.29.0","platforms/unix":"0.17.0","platforms/atspi-common":"0.14.0","platforms/android":"0.4.0"}

Cargo.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

common/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [0.21.0](https://github.com/AccessKit/accesskit/compare/accesskit-v0.20.0...accesskit-v0.21.0) (2025-07-09)
4+
5+
6+
### Features
7+
8+
* Let parents declare actions supported on their children ([#593](https://github.com/AccessKit/accesskit/issues/593)) ([70b534b](https://github.com/AccessKit/accesskit/commit/70b534bed168a84b84cc35199588aa8ab784fb43))
9+
310
## [0.20.0](https://github.com/AccessKit/accesskit/compare/accesskit-v0.19.0...accesskit-v0.20.0) (2025-06-26)
411

512

common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "accesskit"
3-
version = "0.20.0"
3+
version = "0.21.0"
44
authors.workspace = true
55
license.workspace = true
66
description = "UI accessibility infrastructure across platforms"

consumer/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,20 @@
2424
* dependencies
2525
* accesskit bumped from 0.16.2 to 0.16.3
2626

27+
## [0.30.0](https://github.com/AccessKit/accesskit/compare/accesskit_consumer-v0.29.0...accesskit_consumer-v0.30.0) (2025-07-09)
28+
29+
30+
### Features
31+
32+
* Let parents declare actions supported on their children ([#593](https://github.com/AccessKit/accesskit/issues/593)) ([70b534b](https://github.com/AccessKit/accesskit/commit/70b534bed168a84b84cc35199588aa8ab784fb43))
33+
34+
35+
### Dependencies
36+
37+
* The following workspace dependencies were updated
38+
* dependencies
39+
* accesskit bumped from 0.20.0 to 0.21.0
40+
2741
## [0.29.0](https://github.com/AccessKit/accesskit/compare/accesskit_consumer-v0.28.0...accesskit_consumer-v0.29.0) (2025-06-26)
2842

2943

consumer/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "accesskit_consumer"
3-
version = "0.29.0"
3+
version = "0.30.0"
44
authors.workspace = true
55
license.workspace = true
66
description = "AccessKit consumer library (internal)"
@@ -12,5 +12,5 @@ edition.workspace = true
1212
rust-version.workspace = true
1313

1414
[dependencies]
15-
accesskit = { version = "0.20.0", path = "../common" }
15+
accesskit = { version = "0.21.0", path = "../common" }
1616
hashbrown = { version = "0.15", default-features = false, features = ["default-hasher"] }

platforms/android/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Changelog
22

3+
## [0.4.0](https://github.com/AccessKit/accesskit/compare/accesskit_android-v0.3.0...accesskit_android-v0.4.0) (2025-07-09)
4+
5+
6+
### Features
7+
8+
* Let parents declare actions supported on their children ([#593](https://github.com/AccessKit/accesskit/issues/593)) ([70b534b](https://github.com/AccessKit/accesskit/commit/70b534bed168a84b84cc35199588aa8ab784fb43))
9+
* Scrolling on Android ([#586](https://github.com/AccessKit/accesskit/issues/586)) ([62f193a](https://github.com/AccessKit/accesskit/commit/62f193a50e6c11c6726629410548244e486ce940))
10+
11+
12+
### Dependencies
13+
14+
* The following workspace dependencies were updated
15+
* dependencies
16+
* accesskit bumped from 0.20.0 to 0.21.0
17+
* accesskit_consumer bumped from 0.29.0 to 0.30.0
18+
319
## [0.3.0](https://github.com/AccessKit/accesskit/compare/accesskit_android-v0.2.0...accesskit_android-v0.3.0) (2025-06-26)
420

521

platforms/android/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "accesskit_android"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
authors.workspace = true
55
license.workspace = true
66
description = "AccessKit UI accessibility infrastructure: Android adapter"
@@ -15,8 +15,8 @@ rust-version.workspace = true
1515
embedded-dex = []
1616

1717
[dependencies]
18-
accesskit = { version = "0.20.0", path = "../../common" }
19-
accesskit_consumer = { version = "0.29.0", path = "../../consumer" }
18+
accesskit = { version = "0.21.0", path = "../../common" }
19+
accesskit_consumer = { version = "0.30.0", path = "../../consumer" }
2020
jni = "0.21.1"
2121
log = "0.4.17"
2222

platforms/atspi-common/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,21 @@
2424
* accesskit bumped from 0.17.0 to 0.17.1
2525
* accesskit_consumer bumped from 0.25.0 to 0.26.0
2626

27+
## [0.14.0](https://github.com/AccessKit/accesskit/compare/accesskit_atspi_common-v0.13.0...accesskit_atspi_common-v0.14.0) (2025-07-09)
28+
29+
30+
### Features
31+
32+
* Let parents declare actions supported on their children ([#593](https://github.com/AccessKit/accesskit/issues/593)) ([70b534b](https://github.com/AccessKit/accesskit/commit/70b534bed168a84b84cc35199588aa8ab784fb43))
33+
34+
35+
### Dependencies
36+
37+
* The following workspace dependencies were updated
38+
* dependencies
39+
* accesskit bumped from 0.20.0 to 0.21.0
40+
* accesskit_consumer bumped from 0.29.0 to 0.30.0
41+
2742
## [0.13.0](https://github.com/AccessKit/accesskit/compare/accesskit_atspi_common-v0.12.0...accesskit_atspi_common-v0.13.0) (2025-06-26)
2843

2944

platforms/atspi-common/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "accesskit_atspi_common"
3-
version = "0.13.0"
3+
version = "0.14.0"
44
authors.workspace = true
55
license.workspace = true
66
description = "AccessKit UI accessibility infrastructure: core AT-SPI translation layer"
@@ -15,8 +15,8 @@ rust-version.workspace = true
1515
simplified-api = []
1616

1717
[dependencies]
18-
accesskit = { version = "0.20.0", path = "../../common" }
19-
accesskit_consumer = { version = "0.29.0", path = "../../consumer" }
18+
accesskit = { version = "0.21.0", path = "../../common" }
19+
accesskit_consumer = { version = "0.30.0", path = "../../consumer" }
2020
atspi-common = { version = "0.9", default-features = false }
2121
serde = "1.0"
2222
thiserror = "1.0"

0 commit comments

Comments
 (0)