Skip to content

Commit 1c51203

Browse files
author
Matt Campbell
committed
chore: release main
1 parent d360d20 commit 1c51203

16 files changed

+192
-30
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.11.2","consumer":"0.15.2","platforms/macos":"0.9.0","platforms/windows":"0.14.3","platforms/winit":"0.14.4","platforms/unix":"0.5.2","bindings/c":"0.5.1"}
1+
{"common":"0.12.0","consumer":"0.16.0","platforms/macos":"0.10.0","platforms/windows":"0.15.0","platforms/winit":"0.15.0","platforms/unix":"0.6.0","bindings/c":"0.6.0"}

Cargo.lock

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

bindings/c/CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,29 @@
1818
* dependencies
1919
* accesskit_windows bumped from 0.14.2 to 0.14.3
2020

21+
## [0.6.0](https://github.com/AccessKit/accesskit/compare/accesskit_c-v0.5.1...accesskit_c-v0.6.0) (2023-08-26)
22+
23+
24+
### ⚠ BREAKING CHANGES
25+
26+
* Decouple in-tree focus from host window/view focus ([#278](https://github.com/AccessKit/accesskit/issues/278))
27+
* Switch to simple unsigned 64-bit integer for node IDs ([#276](https://github.com/AccessKit/accesskit/issues/276))
28+
29+
### Code Refactoring
30+
31+
* Decouple in-tree focus from host window/view focus ([#278](https://github.com/AccessKit/accesskit/issues/278)) ([d360d20](https://github.com/AccessKit/accesskit/commit/d360d20cf951e7643b81a5303006c9f7daa5bd56))
32+
* Switch to simple unsigned 64-bit integer for node IDs ([#276](https://github.com/AccessKit/accesskit/issues/276)) ([3eadd48](https://github.com/AccessKit/accesskit/commit/3eadd48ec47854faa94a94ebf910ec08f514642f))
33+
34+
35+
### Dependencies
36+
37+
* The following workspace dependencies were updated
38+
* dependencies
39+
* accesskit bumped from 0.11.2 to 0.12.0
40+
* accesskit_windows bumped from 0.14.3 to 0.15.0
41+
* accesskit_macos bumped from 0.9.0 to 0.10.0
42+
* accesskit_unix bumped from 0.5.2 to 0.6.0
43+
2144
## [0.5.0](https://github.com/AccessKit/accesskit/compare/accesskit_c-v0.4.0...accesskit_c-v0.5.0) (2023-08-08)
2245

2346

bindings/c/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "accesskit_c"
3-
version = "0.5.1"
3+
version = "0.6.0"
44
authors = ["Arnold Loubriat <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
publish = false
@@ -14,14 +14,14 @@ crate-type = ["cdylib", "staticlib"]
1414
cbindgen = []
1515

1616
[dependencies]
17-
accesskit = { version = "0.11.2", path = "../../common" }
17+
accesskit = { version = "0.12.0", path = "../../common" }
1818
paste = "1.0"
1919

2020
[target.'cfg(target_os = "windows")'.dependencies]
21-
accesskit_windows = { version = "0.14.3", path = "../../platforms/windows" }
21+
accesskit_windows = { version = "0.15.0", path = "../../platforms/windows" }
2222

2323
[target.'cfg(target_os = "macos")'.dependencies]
24-
accesskit_macos = { version = "0.9.0", path = "../../platforms/macos" }
24+
accesskit_macos = { version = "0.10.0", path = "../../platforms/macos" }
2525

2626
[target.'cfg(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd", target_os = "openbsd", target_os = "netbsd"))'.dependencies]
27-
accesskit_unix = { version = "0.5.2", path = "../../platforms/unix" }
27+
accesskit_unix = { version = "0.6.0", path = "../../platforms/unix" }

common/CHANGELOG.md

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

3+
## [0.12.0](https://github.com/AccessKit/accesskit/compare/accesskit-v0.11.2...accesskit-v0.12.0) (2023-08-26)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* Decouple in-tree focus from host window/view focus ([#278](https://github.com/AccessKit/accesskit/issues/278))
9+
* Switch to simple unsigned 64-bit integer for node IDs ([#276](https://github.com/AccessKit/accesskit/issues/276))
10+
11+
### Bug Fixes
12+
13+
* Support the pyo3 crate in all public enums ([#270](https://github.com/AccessKit/accesskit/issues/270)) ([9b12d0c](https://github.com/AccessKit/accesskit/commit/9b12d0c3d828d4c847510b611d891872c4666984))
14+
15+
16+
### Code Refactoring
17+
18+
* Decouple in-tree focus from host window/view focus ([#278](https://github.com/AccessKit/accesskit/issues/278)) ([d360d20](https://github.com/AccessKit/accesskit/commit/d360d20cf951e7643b81a5303006c9f7daa5bd56))
19+
* Switch to simple unsigned 64-bit integer for node IDs ([#276](https://github.com/AccessKit/accesskit/issues/276)) ([3eadd48](https://github.com/AccessKit/accesskit/commit/3eadd48ec47854faa94a94ebf910ec08f514642f))
20+
321
## [0.11.2](https://github.com/AccessKit/accesskit/compare/accesskit-v0.11.1...accesskit-v0.11.2) (2023-08-08)
422

523

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.11.2"
3+
version = "0.12.0"
44
authors = ["Matt Campbell <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
description = "UI accessibility infrastructure across platforms"

consumer/CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,31 @@
1616
* dependencies
1717
* accesskit bumped from 0.11.1 to 0.11.2
1818

19+
## [0.16.0](https://github.com/AccessKit/accesskit/compare/accesskit_consumer-v0.15.2...accesskit_consumer-v0.16.0) (2023-08-26)
20+
21+
22+
### ⚠ BREAKING CHANGES
23+
24+
* Decouple in-tree focus from host window/view focus ([#278](https://github.com/AccessKit/accesskit/issues/278))
25+
* Switch to simple unsigned 64-bit integer for node IDs ([#276](https://github.com/AccessKit/accesskit/issues/276))
26+
27+
### Bug Fixes
28+
29+
* Support text fields without a value property ([#274](https://github.com/AccessKit/accesskit/issues/274)) ([5ae557b](https://github.com/AccessKit/accesskit/commit/5ae557b40d395b4a9966a90a2d80e7d97ad50bf9))
30+
31+
32+
### Code Refactoring
33+
34+
* Decouple in-tree focus from host window/view focus ([#278](https://github.com/AccessKit/accesskit/issues/278)) ([d360d20](https://github.com/AccessKit/accesskit/commit/d360d20cf951e7643b81a5303006c9f7daa5bd56))
35+
* Switch to simple unsigned 64-bit integer for node IDs ([#276](https://github.com/AccessKit/accesskit/issues/276)) ([3eadd48](https://github.com/AccessKit/accesskit/commit/3eadd48ec47854faa94a94ebf910ec08f514642f))
36+
37+
38+
### Dependencies
39+
40+
* The following workspace dependencies were updated
41+
* dependencies
42+
* accesskit bumped from 0.11.2 to 0.12.0
43+
1944
## [0.15.0](https://github.com/AccessKit/accesskit/compare/accesskit_consumer-v0.14.2...accesskit_consumer-v0.15.0) (2023-03-30)
2045

2146

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.15.2"
3+
version = "0.16.0"
44
authors = ["Matt Campbell <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
description = "AccessKit consumer library (internal)"
@@ -11,5 +11,5 @@ readme = "README.md"
1111
edition = "2021"
1212

1313
[dependencies]
14-
accesskit = { version = "0.11.2", path = "../common" }
14+
accesskit = { version = "0.12.0", path = "../common" }
1515

platforms/macos/CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,32 @@
1313
* accesskit bumped from 0.10.0 to 0.10.1
1414
* accesskit_consumer bumped from 0.14.0 to 0.14.1
1515

16+
## [0.10.0](https://github.com/AccessKit/accesskit/compare/accesskit_macos-v0.9.0...accesskit_macos-v0.10.0) (2023-08-26)
17+
18+
19+
### ⚠ BREAKING CHANGES
20+
21+
* Decouple in-tree focus from host window/view focus ([#278](https://github.com/AccessKit/accesskit/issues/278))
22+
* Switch to simple unsigned 64-bit integer for node IDs ([#276](https://github.com/AccessKit/accesskit/issues/276))
23+
24+
### Bug Fixes
25+
26+
* Support text fields without a value property ([#274](https://github.com/AccessKit/accesskit/issues/274)) ([5ae557b](https://github.com/AccessKit/accesskit/commit/5ae557b40d395b4a9966a90a2d80e7d97ad50bf9))
27+
28+
29+
### Code Refactoring
30+
31+
* Decouple in-tree focus from host window/view focus ([#278](https://github.com/AccessKit/accesskit/issues/278)) ([d360d20](https://github.com/AccessKit/accesskit/commit/d360d20cf951e7643b81a5303006c9f7daa5bd56))
32+
* Switch to simple unsigned 64-bit integer for node IDs ([#276](https://github.com/AccessKit/accesskit/issues/276)) ([3eadd48](https://github.com/AccessKit/accesskit/commit/3eadd48ec47854faa94a94ebf910ec08f514642f))
33+
34+
35+
### Dependencies
36+
37+
* The following workspace dependencies were updated
38+
* dependencies
39+
* accesskit bumped from 0.11.2 to 0.12.0
40+
* accesskit_consumer bumped from 0.15.2 to 0.16.0
41+
1642
## [0.9.0](https://github.com/AccessKit/accesskit/compare/accesskit_macos-v0.8.0...accesskit_macos-v0.9.0) (2023-08-08)
1743

1844

platforms/macos/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_macos"
3-
version = "0.9.0"
3+
version = "0.10.0"
44
authors = ["Matt Campbell <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
description = "AccessKit UI accessibility infrastructure: macOS adapter"
@@ -14,7 +14,7 @@ edition = "2021"
1414
default-target = "x86_64-apple-darwin"
1515

1616
[dependencies]
17-
accesskit = { version = "0.11.2", path = "../../common" }
18-
accesskit_consumer = { version = "0.15.2", path = "../../consumer" }
17+
accesskit = { version = "0.12.0", path = "../../common" }
18+
accesskit_consumer = { version = "0.16.0", path = "../../consumer" }
1919
objc2 = ">=0.3.0-beta.3, <0.3.0-beta.4" # Allow `0.3.0-beta.3.patch-leaks`
2020
once_cell = "1.13.0"

platforms/unix/CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,27 @@
2424
* accesskit bumped from 0.11.1 to 0.11.2
2525
* accesskit_consumer bumped from 0.15.1 to 0.15.2
2626

27+
## [0.6.0](https://github.com/AccessKit/accesskit/compare/accesskit_unix-v0.5.2...accesskit_unix-v0.6.0) (2023-08-26)
28+
29+
30+
### ⚠ BREAKING CHANGES
31+
32+
* Decouple in-tree focus from host window/view focus ([#278](https://github.com/AccessKit/accesskit/issues/278))
33+
* Switch to simple unsigned 64-bit integer for node IDs ([#276](https://github.com/AccessKit/accesskit/issues/276))
34+
35+
### Code Refactoring
36+
37+
* Decouple in-tree focus from host window/view focus ([#278](https://github.com/AccessKit/accesskit/issues/278)) ([d360d20](https://github.com/AccessKit/accesskit/commit/d360d20cf951e7643b81a5303006c9f7daa5bd56))
38+
* Switch to simple unsigned 64-bit integer for node IDs ([#276](https://github.com/AccessKit/accesskit/issues/276)) ([3eadd48](https://github.com/AccessKit/accesskit/commit/3eadd48ec47854faa94a94ebf910ec08f514642f))
39+
40+
41+
### Dependencies
42+
43+
* The following workspace dependencies were updated
44+
* dependencies
45+
* accesskit bumped from 0.11.2 to 0.12.0
46+
* accesskit_consumer bumped from 0.15.2 to 0.16.0
47+
2748
## [0.5.0](https://github.com/AccessKit/accesskit/compare/accesskit_unix-v0.4.0...accesskit_unix-v0.5.0) (2023-05-21)
2849

2950

platforms/unix/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_unix"
3-
version = "0.5.2"
3+
version = "0.6.0"
44
authors = ["Arnold Loubriat <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
description = "AccessKit UI accessibility infrastructure: Linux adapter"
@@ -16,8 +16,8 @@ async-io = ["zbus/async-io"]
1616
tokio = ["dep:once_cell", "dep:tokio", "zbus/tokio"]
1717

1818
[dependencies]
19-
accesskit = { version = "0.11.2", path = "../../common" }
20-
accesskit_consumer = { version = "0.15.2", path = "../../consumer" }
19+
accesskit = { version = "0.12.0", path = "../../common" }
20+
accesskit_consumer = { version = "0.16.0", path = "../../consumer" }
2121
async-channel = "1.8.0"
2222
atspi = { version = "0.10.1", default-features = false }
2323
futures-lite = "1.12.0"

platforms/windows/CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,32 @@
2828
* accesskit bumped from 0.11.1 to 0.11.2
2929
* accesskit_consumer bumped from 0.15.1 to 0.15.2
3030

31+
## [0.15.0](https://github.com/AccessKit/accesskit/compare/accesskit_windows-v0.14.3...accesskit_windows-v0.15.0) (2023-08-26)
32+
33+
34+
### ⚠ BREAKING CHANGES
35+
36+
* Decouple in-tree focus from host window/view focus ([#278](https://github.com/AccessKit/accesskit/issues/278))
37+
* Switch to simple unsigned 64-bit integer for node IDs ([#276](https://github.com/AccessKit/accesskit/issues/276))
38+
39+
### Bug Fixes
40+
41+
* Support text fields without a value property ([#274](https://github.com/AccessKit/accesskit/issues/274)) ([5ae557b](https://github.com/AccessKit/accesskit/commit/5ae557b40d395b4a9966a90a2d80e7d97ad50bf9))
42+
43+
44+
### Code Refactoring
45+
46+
* Decouple in-tree focus from host window/view focus ([#278](https://github.com/AccessKit/accesskit/issues/278)) ([d360d20](https://github.com/AccessKit/accesskit/commit/d360d20cf951e7643b81a5303006c9f7daa5bd56))
47+
* Switch to simple unsigned 64-bit integer for node IDs ([#276](https://github.com/AccessKit/accesskit/issues/276)) ([3eadd48](https://github.com/AccessKit/accesskit/commit/3eadd48ec47854faa94a94ebf910ec08f514642f))
48+
49+
50+
### Dependencies
51+
52+
* The following workspace dependencies were updated
53+
* dependencies
54+
* accesskit bumped from 0.11.2 to 0.12.0
55+
* accesskit_consumer bumped from 0.15.2 to 0.16.0
56+
3157
## [0.14.3](https://github.com/AccessKit/accesskit/compare/accesskit_windows-v0.14.2...accesskit_windows-v0.14.3) (2023-08-08)
3258

3359

platforms/windows/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_windows"
3-
version = "0.14.3"
3+
version = "0.15.0"
44
authors = ["Matt Campbell <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
description = "AccessKit UI accessibility infrastructure: Windows adapter"
@@ -11,8 +11,8 @@ readme = "README.md"
1111
edition = "2021"
1212

1313
[dependencies]
14-
accesskit = { version = "0.11.2", path = "../../common" }
15-
accesskit_consumer = { version = "0.15.2", path = "../../consumer" }
14+
accesskit = { version = "0.12.0", path = "../../common" }
15+
accesskit_consumer = { version = "0.16.0", path = "../../consumer" }
1616
once_cell = "1.13.0"
1717
paste = "1.0"
1818
static_assertions = "1.1.0"

platforms/winit/CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,29 @@
7373
* dependencies
7474
* accesskit_windows bumped from 0.14.2 to 0.14.3
7575

76+
## [0.15.0](https://github.com/AccessKit/accesskit/compare/accesskit_winit-v0.14.4...accesskit_winit-v0.15.0) (2023-08-26)
77+
78+
79+
### ⚠ BREAKING CHANGES
80+
81+
* Decouple in-tree focus from host window/view focus ([#278](https://github.com/AccessKit/accesskit/issues/278))
82+
* Switch to simple unsigned 64-bit integer for node IDs ([#276](https://github.com/AccessKit/accesskit/issues/276))
83+
84+
### Code Refactoring
85+
86+
* Decouple in-tree focus from host window/view focus ([#278](https://github.com/AccessKit/accesskit/issues/278)) ([d360d20](https://github.com/AccessKit/accesskit/commit/d360d20cf951e7643b81a5303006c9f7daa5bd56))
87+
* Switch to simple unsigned 64-bit integer for node IDs ([#276](https://github.com/AccessKit/accesskit/issues/276)) ([3eadd48](https://github.com/AccessKit/accesskit/commit/3eadd48ec47854faa94a94ebf910ec08f514642f))
88+
89+
90+
### Dependencies
91+
92+
* The following workspace dependencies were updated
93+
* dependencies
94+
* accesskit bumped from 0.11.2 to 0.12.0
95+
* accesskit_windows bumped from 0.14.3 to 0.15.0
96+
* accesskit_macos bumped from 0.9.0 to 0.10.0
97+
* accesskit_unix bumped from 0.5.2 to 0.6.0
98+
7699
## [0.14.0](https://github.com/AccessKit/accesskit/compare/accesskit_winit-v0.13.0...accesskit_winit-v0.14.0) (2023-05-21)
77100

78101

0 commit comments

Comments
 (0)