Skip to content

Commit df2dfb3

Browse files
authored
chore: release main (#422)
1 parent 1121723 commit df2dfb3

18 files changed

+106
-30
lines changed

.release-please-manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"common":"0.14.0","consumer":"0.21.0","platforms/macos":"0.14.0","platforms/windows":"0.19.0","platforms/winit":"0.20.3","platforms/unix":"0.10.0","bindings/c":"0.10.2","bindings/python":"0.3.3","platforms/atspi-common":"0.5.0"}
1+
{"common":"0.14.0","consumer":"0.22.0","platforms/macos":"0.15.0","platforms/windows":"0.20.0","platforms/winit":"0.20.4","platforms/unix":"0.10.1","bindings/c":"0.10.3","bindings/python":"0.3.4","platforms/atspi-common":"0.6.0"}

Cargo.lock

+8-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bindings/c/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,12 @@
6666
* accesskit_macos bumped from 0.13.2 to 0.14.0
6767
* accesskit_unix bumped from 0.9.2 to 0.10.0
6868

69+
* The following workspace dependencies were updated
70+
* dependencies
71+
* accesskit_windows bumped from 0.19.0 to 0.20.0
72+
* accesskit_macos bumped from 0.14.0 to 0.15.0
73+
* accesskit_unix bumped from 0.10.0 to 0.10.1
74+
6975
## [0.10.0](https://github.com/AccessKit/accesskit/compare/accesskit_c-v0.9.0...accesskit_c-v0.10.0) (2024-05-11)
7076

7177

bindings/c/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "accesskit_c"
3-
version = "0.10.2"
3+
version = "0.10.3"
44
authors.workspace = true
55
license.workspace = true
66
publish = false
@@ -19,10 +19,10 @@ accesskit = { version = "0.14.0", path = "../../common" }
1919
paste = "1.0"
2020

2121
[target.'cfg(target_os = "windows")'.dependencies]
22-
accesskit_windows = { version = "0.19.0", path = "../../platforms/windows" }
22+
accesskit_windows = { version = "0.20.0", path = "../../platforms/windows" }
2323

2424
[target.'cfg(target_os = "macos")'.dependencies]
25-
accesskit_macos = { version = "0.14.0", path = "../../platforms/macos" }
25+
accesskit_macos = { version = "0.15.0", path = "../../platforms/macos" }
2626

2727
[target.'cfg(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd", target_os = "openbsd", target_os = "netbsd"))'.dependencies]
28-
accesskit_unix = { version = "0.10.0", path = "../../platforms/unix" }
28+
accesskit_unix = { version = "0.10.1", path = "../../platforms/unix" }

bindings/python/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,12 @@
4444
* accesskit_macos bumped from 0.13.2 to 0.14.0
4545
* accesskit_unix bumped from 0.9.2 to 0.10.0
4646

47+
* The following workspace dependencies were updated
48+
* dependencies
49+
* accesskit_windows bumped from 0.19.0 to 0.20.0
50+
* accesskit_macos bumped from 0.14.0 to 0.15.0
51+
* accesskit_unix bumped from 0.10.0 to 0.10.1
52+
4753
## [0.3.1](https://github.com/AccessKit/accesskit/compare/accesskit_python-v0.3.0...accesskit_python-v0.3.1) (2024-05-11)
4854

4955

bindings/python/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "accesskit_python"
3-
version = "0.3.3"
3+
version = "0.3.4"
44
authors.workspace = true
55
license.workspace = true
66
description = "Python bindings to the AccessKit library"
@@ -21,10 +21,10 @@ accesskit = { version = "0.14.0", path = "../../common", features = ["pyo3"] }
2121
pyo3 = { version = "0.20", features = ["abi3-py38", "multiple-pymethods"] }
2222

2323
[target.'cfg(target_os = "windows")'.dependencies]
24-
accesskit_windows = { version = "0.19.0", path = "../../platforms/windows" }
24+
accesskit_windows = { version = "0.20.0", path = "../../platforms/windows" }
2525

2626
[target.'cfg(target_os = "macos")'.dependencies]
27-
accesskit_macos = { version = "0.14.0", path = "../../platforms/macos" }
27+
accesskit_macos = { version = "0.15.0", path = "../../platforms/macos" }
2828

2929
[target.'cfg(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd", target_os = "openbsd", target_os = "netbsd"))'.dependencies]
30-
accesskit_unix = { version = "0.10.0", path = "../../platforms/unix" }
30+
accesskit_unix = { version = "0.10.1", path = "../../platforms/unix" }

consumer/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,13 @@
2020
* dependencies
2121
* accesskit bumped from 0.12.2 to 0.12.3
2222

23+
## [0.22.0](https://github.com/AccessKit/accesskit/compare/accesskit_consumer-v0.21.0...accesskit_consumer-v0.22.0) (2024-05-27)
24+
25+
26+
### Features
27+
28+
* Expose the `orientation` property ([#421](https://github.com/AccessKit/accesskit/issues/421)) ([590aada](https://github.com/AccessKit/accesskit/commit/590aada070dc812f9b8f171fb9e43ac984fad2a1))
29+
2330
## [0.21.0](https://github.com/AccessKit/accesskit/compare/accesskit_consumer-v0.20.0...accesskit_consumer-v0.21.0) (2024-05-26)
2431

2532

consumer/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "accesskit_consumer"
3-
version = "0.21.0"
3+
version = "0.22.0"
44
authors.workspace = true
55
license.workspace = true
66
description = "AccessKit consumer library (internal)"

platforms/atspi-common/CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,25 @@
99
* dependencies
1010
* accesskit_consumer bumped from 0.19.0 to 0.19.1
1111

12+
## [0.6.0](https://github.com/AccessKit/accesskit/compare/accesskit_atspi_common-v0.5.0...accesskit_atspi_common-v0.6.0) (2024-05-27)
13+
14+
15+
### Features
16+
17+
* Expose the `orientation` property ([#421](https://github.com/AccessKit/accesskit/issues/421)) ([590aada](https://github.com/AccessKit/accesskit/commit/590aada070dc812f9b8f171fb9e43ac984fad2a1))
18+
19+
20+
### Bug Fixes
21+
22+
* Fix a logic error in suffix calculation for text changes ([#423](https://github.com/AccessKit/accesskit/issues/423)) ([1121723](https://github.com/AccessKit/accesskit/commit/1121723983cb2fa64b5053626ec64afb851ff6c4))
23+
24+
25+
### Dependencies
26+
27+
* The following workspace dependencies were updated
28+
* dependencies
29+
* accesskit_consumer bumped from 0.21.0 to 0.22.0
30+
1231
## [0.5.0](https://github.com/AccessKit/accesskit/compare/accesskit_atspi_common-v0.4.2...accesskit_atspi_common-v0.5.0) (2024-05-26)
1332

1433

platforms/atspi-common/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "accesskit_atspi_common"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
authors.workspace = true
55
license.workspace = true
66
description = "AccessKit UI accessibility infrastructure: core AT-SPI translation layer"
@@ -13,7 +13,7 @@ rust-version.workspace = true
1313

1414
[dependencies]
1515
accesskit = { version = "0.14.0", path = "../../common" }
16-
accesskit_consumer = { version = "0.21.0", path = "../../consumer" }
16+
accesskit_consumer = { version = "0.22.0", path = "../../consumer" }
1717
atspi-common = { version = "0.3.0", default-features = false }
1818
serde = "1.0"
1919
thiserror = "1.0.39"

platforms/macos/CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,20 @@
2727
* dependencies
2828
* accesskit_consumer bumped from 0.19.0 to 0.19.1
2929

30+
## [0.15.0](https://github.com/AccessKit/accesskit/compare/accesskit_macos-v0.14.0...accesskit_macos-v0.15.0) (2024-05-27)
31+
32+
33+
### Features
34+
35+
* Expose the `orientation` property ([#421](https://github.com/AccessKit/accesskit/issues/421)) ([590aada](https://github.com/AccessKit/accesskit/commit/590aada070dc812f9b8f171fb9e43ac984fad2a1))
36+
37+
38+
### Dependencies
39+
40+
* The following workspace dependencies were updated
41+
* dependencies
42+
* accesskit_consumer bumped from 0.21.0 to 0.22.0
43+
3044
## [0.14.0](https://github.com/AccessKit/accesskit/compare/accesskit_macos-v0.13.2...accesskit_macos-v0.14.0) (2024-05-26)
3145

3246

platforms/macos/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "accesskit_macos"
3-
version = "0.14.0"
3+
version = "0.15.0"
44
authors.workspace = true
55
license.workspace = true
66
description = "AccessKit UI accessibility infrastructure: macOS adapter"
@@ -16,7 +16,7 @@ default-target = "x86_64-apple-darwin"
1616

1717
[dependencies]
1818
accesskit = { version = "0.14.0", path = "../../common" }
19-
accesskit_consumer = { version = "0.21.0", path = "../../consumer" }
19+
accesskit_consumer = { version = "0.22.0", path = "../../consumer" }
2020
once_cell = "1.13.0"
2121
objc2 = "0.5.1"
2222
objc2-foundation = { version = "0.2.0", features = [

platforms/unix/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,10 @@
5050
* dependencies
5151
* accesskit_atspi_common bumped from 0.4.1 to 0.4.2
5252

53+
* The following workspace dependencies were updated
54+
* dependencies
55+
* accesskit_atspi_common bumped from 0.5.0 to 0.6.0
56+
5357
## [0.10.0](https://github.com/AccessKit/accesskit/compare/accesskit_unix-v0.9.2...accesskit_unix-v0.10.0) (2024-05-26)
5458

5559

platforms/unix/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "accesskit_unix"
3-
version = "0.10.0"
3+
version = "0.10.1"
44
authors.workspace = true
55
license.workspace = true
66
description = "AccessKit UI accessibility infrastructure: Linux adapter"
@@ -18,7 +18,7 @@ tokio = ["dep:tokio", "dep:tokio-stream", "atspi/tokio", "zbus/tokio"]
1818

1919
[dependencies]
2020
accesskit = { version = "0.14.0", path = "../../common" }
21-
accesskit_atspi_common = { version = "0.5.0", path = "../atspi-common" }
21+
accesskit_atspi_common = { version = "0.6.0", path = "../atspi-common" }
2222
atspi = { version = "0.19", default-features = false }
2323
futures-lite = "1.13"
2424
serde = "1.0"

platforms/windows/CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,20 @@
3333
* accesskit bumped from 0.12.2 to 0.12.3
3434
* accesskit_consumer bumped from 0.17.0 to 0.17.1
3535

36+
## [0.20.0](https://github.com/AccessKit/accesskit/compare/accesskit_windows-v0.19.0...accesskit_windows-v0.20.0) (2024-05-27)
37+
38+
39+
### Features
40+
41+
* Expose the `orientation` property ([#421](https://github.com/AccessKit/accesskit/issues/421)) ([590aada](https://github.com/AccessKit/accesskit/commit/590aada070dc812f9b8f171fb9e43ac984fad2a1))
42+
43+
44+
### Dependencies
45+
46+
* The following workspace dependencies were updated
47+
* dependencies
48+
* accesskit_consumer bumped from 0.21.0 to 0.22.0
49+
3650
## [0.19.0](https://github.com/AccessKit/accesskit/compare/accesskit_windows-v0.18.2...accesskit_windows-v0.19.0) (2024-05-26)
3751

3852

platforms/windows/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "accesskit_windows"
3-
version = "0.19.0"
3+
version = "0.20.0"
44
authors.workspace = true
55
license.workspace = true
66
description = "AccessKit UI accessibility infrastructure: Windows adapter"
@@ -13,7 +13,7 @@ rust-version.workspace = true
1313

1414
[dependencies]
1515
accesskit = { version = "0.14.0", path = "../../common" }
16-
accesskit_consumer = { version = "0.21.0", path = "../../consumer" }
16+
accesskit_consumer = { version = "0.22.0", path = "../../consumer" }
1717
paste = "1.0"
1818
static_assertions = "1.1.0"
1919

platforms/winit/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,12 @@
119119
* accesskit_macos bumped from 0.13.2 to 0.14.0
120120
* accesskit_unix bumped from 0.9.2 to 0.10.0
121121

122+
* The following workspace dependencies were updated
123+
* dependencies
124+
* accesskit_windows bumped from 0.19.0 to 0.20.0
125+
* accesskit_macos bumped from 0.14.0 to 0.15.0
126+
* accesskit_unix bumped from 0.10.0 to 0.10.1
127+
122128
## [0.20.0](https://github.com/AccessKit/accesskit/compare/accesskit_winit-v0.19.0...accesskit_winit-v0.20.0) (2024-04-30)
123129

124130

platforms/winit/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "accesskit_winit"
3-
version = "0.20.3"
3+
version = "0.20.4"
44
authors.workspace = true
55
license = "Apache-2.0"
66
description = "AccessKit UI accessibility infrastructure: winit adapter"
@@ -28,13 +28,13 @@ rwh_05 = { package = "raw-window-handle", version = "0.5", features = ["std"], o
2828
rwh_06 = { package = "raw-window-handle", version = "0.6", features = ["std"], optional = true }
2929

3030
[target.'cfg(target_os = "windows")'.dependencies]
31-
accesskit_windows = { version = "0.19.0", path = "../windows" }
31+
accesskit_windows = { version = "0.20.0", path = "../windows" }
3232

3333
[target.'cfg(target_os = "macos")'.dependencies]
34-
accesskit_macos = { version = "0.14.0", path = "../macos" }
34+
accesskit_macos = { version = "0.15.0", path = "../macos" }
3535

3636
[target.'cfg(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd", target_os = "openbsd", target_os = "netbsd"))'.dependencies]
37-
accesskit_unix = { version = "0.10.0", path = "../unix", optional = true, default-features = false }
37+
accesskit_unix = { version = "0.10.1", path = "../unix", optional = true, default-features = false }
3838

3939
[dev-dependencies.winit]
4040
version = "0.30"

0 commit comments

Comments
 (0)