Skip to content

Commit d6db2b3

Browse files
authored
chore: release main (#571)
1 parent 2887cdd commit d6db2b3

File tree

18 files changed

+189
-33
lines changed

18 files changed

+189
-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.19.0","consumer":"0.28.0","platforms/macos":"0.20.0","platforms/windows":"0.27.0","platforms/winit":"0.27.0","platforms/unix":"0.15.0","platforms/atspi-common":"0.12.0","platforms/android":"0.2.0"}
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"}

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: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# Changelog
22

3+
## [0.20.0](https://github.com/AccessKit/accesskit/compare/accesskit-v0.19.0...accesskit-v0.20.0) (2025-06-26)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* Refactor actions for scrolling by discrete units ([#573](https://github.com/AccessKit/accesskit/issues/573))
9+
10+
### Bug Fixes
11+
12+
* impl `From<bool>` for `Toggled` ([#585](https://github.com/AccessKit/accesskit/issues/585)) ([d38776a](https://github.com/AccessKit/accesskit/commit/d38776a014744db849edbfc9e0a7d0378709ed4b))
13+
* Resolve new clippy warning about using variables directly in format strings ([#590](https://github.com/AccessKit/accesskit/issues/590)) ([ccc62b7](https://github.com/AccessKit/accesskit/commit/ccc62b7f1dd32f0c372ba127a1e65c377048f670))
14+
15+
16+
### Code Refactoring
17+
18+
* Refactor actions for scrolling by discrete units ([#573](https://github.com/AccessKit/accesskit/issues/573)) ([fad11a1](https://github.com/AccessKit/accesskit/commit/fad11a1b66340e7be6b2eb00dfd07004451a17eb))
19+
320
## [0.19.0](https://github.com/AccessKit/accesskit/compare/accesskit-v0.18.0...accesskit-v0.19.0) (2025-05-06)
421

522

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.19.0"
3+
version = "0.20.0"
44
authors.workspace = true
55
license.workspace = true
66
description = "UI accessibility infrastructure across platforms"

consumer/CHANGELOG.md

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

27+
## [0.29.0](https://github.com/AccessKit/accesskit/compare/accesskit_consumer-v0.28.0...accesskit_consumer-v0.29.0) (2025-06-26)
28+
29+
30+
### Features
31+
32+
* Consumer support for scrolling and clipping children ([#574](https://github.com/AccessKit/accesskit/issues/574)) ([4094dec](https://github.com/AccessKit/accesskit/commit/4094dec2ad512570c7837d057f1d5893e89ff9b4))
33+
34+
35+
### Bug Fixes
36+
37+
* Eliminate incorrect removal of reparented nodes ([#576](https://github.com/AccessKit/accesskit/issues/576)) ([db7d4d0](https://github.com/AccessKit/accesskit/commit/db7d4d050d89a4aafa6b5ad2097d0bd8a7997940))
38+
* Resolve new clippy warning about using variables directly in format strings ([#590](https://github.com/AccessKit/accesskit/issues/590)) ([ccc62b7](https://github.com/AccessKit/accesskit/commit/ccc62b7f1dd32f0c372ba127a1e65c377048f670))
39+
40+
41+
### Dependencies
42+
43+
* The following workspace dependencies were updated
44+
* dependencies
45+
* accesskit bumped from 0.19.0 to 0.20.0
46+
2747
## [0.28.0](https://github.com/AccessKit/accesskit/compare/accesskit_consumer-v0.27.0...accesskit_consumer-v0.28.0) (2025-05-06)
2848

2949

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.28.0"
3+
version = "0.29.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.19.0", path = "../common" }
15+
accesskit = { version = "0.20.0", path = "../common" }
1616
hashbrown = { version = "0.15", default-features = false, features = ["default-hasher"] }

platforms/android/CHANGELOG.md

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

3+
## [0.3.0](https://github.com/AccessKit/accesskit/compare/accesskit_android-v0.2.0...accesskit_android-v0.3.0) (2025-06-26)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* Force a semver-breaking release ([#589](https://github.com/AccessKit/accesskit/issues/589))
9+
10+
### Bug Fixes
11+
12+
* Force a semver-breaking release ([#589](https://github.com/AccessKit/accesskit/issues/589)) ([2887cdd](https://github.com/AccessKit/accesskit/commit/2887cddde817ba3851688068d8d10de5cef7c624))
13+
14+
15+
### Dependencies
16+
17+
* The following workspace dependencies were updated
18+
* dependencies
19+
* accesskit bumped from 0.19.0 to 0.20.0
20+
* accesskit_consumer bumped from 0.28.0 to 0.29.0
21+
322
## [0.2.0](https://github.com/AccessKit/accesskit/compare/accesskit_android-v0.1.1...accesskit_android-v0.2.0) (2025-05-06)
423

524

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.2.0"
3+
version = "0.3.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.19.0", path = "../../common" }
19-
accesskit_consumer = { version = "0.28.0", path = "../../consumer" }
18+
accesskit = { version = "0.20.0", path = "../../common" }
19+
accesskit_consumer = { version = "0.29.0", path = "../../consumer" }
2020
jni = "0.21.1"
2121
log = "0.4.17"
2222

platforms/atspi-common/CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,25 @@
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.13.0](https://github.com/AccessKit/accesskit/compare/accesskit_atspi_common-v0.12.0...accesskit_atspi_common-v0.13.0) (2025-06-26)
28+
29+
30+
### ⚠ BREAKING CHANGES
31+
32+
* Force a semver-breaking release ([#589](https://github.com/AccessKit/accesskit/issues/589))
33+
34+
### Bug Fixes
35+
36+
* Force a semver-breaking release ([#589](https://github.com/AccessKit/accesskit/issues/589)) ([2887cdd](https://github.com/AccessKit/accesskit/commit/2887cddde817ba3851688068d8d10de5cef7c624))
37+
38+
39+
### Dependencies
40+
41+
* The following workspace dependencies were updated
42+
* dependencies
43+
* accesskit bumped from 0.19.0 to 0.20.0
44+
* accesskit_consumer bumped from 0.28.0 to 0.29.0
45+
2746
## [0.12.0](https://github.com/AccessKit/accesskit/compare/accesskit_atspi_common-v0.11.0...accesskit_atspi_common-v0.12.0) (2025-05-06)
2847

2948

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.12.0"
3+
version = "0.13.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.19.0", path = "../../common" }
19-
accesskit_consumer = { version = "0.28.0", path = "../../consumer" }
18+
accesskit = { version = "0.20.0", path = "../../common" }
19+
accesskit_consumer = { version = "0.29.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)