Skip to content

Commit a401fae

Browse files
committed
chore: release main
1 parent 2e85b46 commit a401fae

File tree

18 files changed

+124
-33
lines changed

18 files changed

+124
-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.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"}
1+
{"common":"0.21.1","consumer":"0.30.1","platforms/macos":"0.22.1","platforms/windows":"0.29.1","platforms/winit":"0.29.1","platforms/unix":"0.17.1","platforms/atspi-common":"0.14.1","platforms/android":"0.4.1"}

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

3+
## [0.21.1](https://github.com/AccessKit/accesskit/compare/accesskit-v0.21.0...accesskit-v0.21.1) (2025-09-15)
4+
5+
6+
### Bug Fixes
7+
8+
* Fix clippy warnings introduced in 1.89 ([#606](https://github.com/AccessKit/accesskit/issues/606)) ([b2c07d6](https://github.com/AccessKit/accesskit/commit/b2c07d654a8ce6f01e61a79c91f2f9d5a96afdc9))
9+
* Fix link in `ActionData::ScrollHint` documentation ([#598](https://github.com/AccessKit/accesskit/issues/598)) ([28b82e9](https://github.com/AccessKit/accesskit/commit/28b82e9941b10ac0643201b9b3989f0184346216))
10+
311
## [0.21.0](https://github.com/AccessKit/accesskit/compare/accesskit-v0.20.0...accesskit-v0.21.0) (2025-07-16)
412

513

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

consumer/CHANGELOG.md

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

27+
## [0.30.1](https://github.com/AccessKit/accesskit/compare/accesskit_consumer-v0.30.0...accesskit_consumer-v0.30.1) (2025-09-15)
28+
29+
30+
### Bug Fixes
31+
32+
* Fix clippy warnings introduced in 1.89 ([#606](https://github.com/AccessKit/accesskit/issues/606)) ([b2c07d6](https://github.com/AccessKit/accesskit/commit/b2c07d654a8ce6f01e61a79c91f2f9d5a96afdc9))
33+
* Only expose the `placeholder` property on empty text inputs ([#607](https://github.com/AccessKit/accesskit/issues/607)) ([1764cef](https://github.com/AccessKit/accesskit/commit/1764cef1892e3bf05182fb9c4c65d5ba4f157f50))
34+
35+
36+
### Dependencies
37+
38+
* The following workspace dependencies were updated
39+
* dependencies
40+
* accesskit bumped from 0.21.0 to 0.21.1
41+
2742
## [0.30.0](https://github.com/AccessKit/accesskit/compare/accesskit_consumer-v0.29.0...accesskit_consumer-v0.30.0) (2025-07-16)
2843

2944

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.30.0"
3+
version = "0.30.1"
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.21.0", path = "../common" }
15+
accesskit = { version = "0.21.1", path = "../common" }
1616
hashbrown = { version = "0.15", default-features = false, features = ["default-hasher"] }

platforms/android/CHANGELOG.md

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

3+
## [0.4.1](https://github.com/AccessKit/accesskit/compare/accesskit_android-v0.4.0...accesskit_android-v0.4.1) (2025-09-15)
4+
5+
6+
### Dependencies
7+
8+
* The following workspace dependencies were updated
9+
* dependencies
10+
* accesskit bumped from 0.21.0 to 0.21.1
11+
* accesskit_consumer bumped from 0.30.0 to 0.30.1
12+
313
## [0.4.0](https://github.com/AccessKit/accesskit/compare/accesskit_android-v0.3.0...accesskit_android-v0.4.0) (2025-07-16)
414

515

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.4.0"
3+
version = "0.4.1"
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.21.0", path = "../../common" }
19-
accesskit_consumer = { version = "0.30.0", path = "../../consumer" }
18+
accesskit = { version = "0.21.1", path = "../../common" }
19+
accesskit_consumer = { version = "0.30.1", 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.1](https://github.com/AccessKit/accesskit/compare/accesskit_atspi_common-v0.14.0...accesskit_atspi_common-v0.14.1) (2025-09-15)
28+
29+
30+
### Bug Fixes
31+
32+
* Fix clippy warnings introduced in 1.89 ([#606](https://github.com/AccessKit/accesskit/issues/606)) ([b2c07d6](https://github.com/AccessKit/accesskit/commit/b2c07d654a8ce6f01e61a79c91f2f9d5a96afdc9))
33+
34+
35+
### Dependencies
36+
37+
* The following workspace dependencies were updated
38+
* dependencies
39+
* accesskit bumped from 0.21.0 to 0.21.1
40+
* accesskit_consumer bumped from 0.30.0 to 0.30.1
41+
2742
## [0.14.0](https://github.com/AccessKit/accesskit/compare/accesskit_atspi_common-v0.13.0...accesskit_atspi_common-v0.14.0) (2025-07-16)
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.14.0"
3+
version = "0.14.1"
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.21.0", path = "../../common" }
19-
accesskit_consumer = { version = "0.30.0", path = "../../consumer" }
18+
accesskit = { version = "0.21.1", path = "../../common" }
19+
accesskit_consumer = { version = "0.30.1", path = "../../consumer" }
2020
atspi-common = { version = "0.9", default-features = false }
2121
serde = "1.0"
2222
thiserror = "1.0"

0 commit comments

Comments
 (0)