Skip to content

Commit 37c41c3

Browse files
committed
chore: release main
1 parent db7d4d0 commit 37c41c3

File tree

18 files changed

+126
-33
lines changed

18 files changed

+126
-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.28.1","platforms/macos":"0.20.1","platforms/windows":"0.27.1","platforms/winit":"0.27.1","platforms/unix":"0.15.1","platforms/atspi-common":"0.12.1","platforms/android":"0.2.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: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## [0.20.0](https://github.com/AccessKit/accesskit/compare/accesskit-v0.19.0...accesskit-v0.20.0) (2025-06-14)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* Refactor actions for scrolling by discrete units ([#573](https://github.com/AccessKit/accesskit/issues/573))
9+
10+
### Code Refactoring
11+
12+
* Refactor actions for scrolling by discrete units ([#573](https://github.com/AccessKit/accesskit/issues/573)) ([fad11a1](https://github.com/AccessKit/accesskit/commit/fad11a1b66340e7be6b2eb00dfd07004451a17eb))
13+
314
## [0.19.0](https://github.com/AccessKit/accesskit/compare/accesskit-v0.18.0...accesskit-v0.19.0) (2025-05-06)
415

516

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: 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.28.1](https://github.com/AccessKit/accesskit/compare/accesskit_consumer-v0.28.0...accesskit_consumer-v0.28.1) (2025-06-14)
28+
29+
30+
### Bug Fixes
31+
32+
* Eliminate incorrect removal of reparented nodes ([#576](https://github.com/AccessKit/accesskit/issues/576)) ([db7d4d0](https://github.com/AccessKit/accesskit/commit/db7d4d050d89a4aafa6b5ad2097d0bd8a7997940))
33+
34+
35+
### Dependencies
36+
37+
* The following workspace dependencies were updated
38+
* dependencies
39+
* accesskit bumped from 0.19.0 to 0.20.0
40+
2741
## [0.28.0](https://github.com/AccessKit/accesskit/compare/accesskit_consumer-v0.27.0...accesskit_consumer-v0.28.0) (2025-05-06)
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.28.0"
3+
version = "0.28.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.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: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## [0.2.1](https://github.com/AccessKit/accesskit/compare/accesskit_android-v0.2.0...accesskit_android-v0.2.1) (2025-06-14)
4+
5+
6+
### Dependencies
7+
8+
* The following workspace dependencies were updated
9+
* dependencies
10+
* accesskit bumped from 0.19.0 to 0.20.0
11+
* accesskit_consumer bumped from 0.28.0 to 0.28.1
12+
313
## [0.2.0](https://github.com/AccessKit/accesskit/compare/accesskit_android-v0.1.1...accesskit_android-v0.2.0) (2025-05-06)
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.2.0"
3+
version = "0.2.1"
44
authors.workspace = true
55
license.workspace = true
66
description = "AccessKit UI accessibility infrastructure: Android adapter"
@@ -15,7 +15,7 @@ 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.28.1", path = "../../consumer" }
2020
jni = "0.21.1"
2121
log = "0.4.17"

platforms/atspi-common/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,16 @@
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.12.1](https://github.com/AccessKit/accesskit/compare/accesskit_atspi_common-v0.12.0...accesskit_atspi_common-v0.12.1) (2025-06-14)
28+
29+
30+
### Dependencies
31+
32+
* The following workspace dependencies were updated
33+
* dependencies
34+
* accesskit bumped from 0.19.0 to 0.20.0
35+
* accesskit_consumer bumped from 0.28.0 to 0.28.1
36+
2737
## [0.12.0](https://github.com/AccessKit/accesskit/compare/accesskit_atspi_common-v0.11.0...accesskit_atspi_common-v0.12.0) (2025-05-06)
2838

2939

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.12.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.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.28.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)