Skip to content

Commit deaaac0

Browse files
author
Matt Campbell
committed
chore: release main
1 parent 3eadd48 commit deaaac0

16 files changed

+178
-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: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,27 @@
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-18)
22+
23+
24+
### ⚠ BREAKING CHANGES
25+
26+
* Switch to simple unsigned 64-bit integer for node IDs ([#276](https://github.com/AccessKit/accesskit/issues/276))
27+
28+
### Code Refactoring
29+
30+
* 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))
31+
32+
33+
### Dependencies
34+
35+
* The following workspace dependencies were updated
36+
* dependencies
37+
* accesskit bumped from 0.11.2 to 0.12.0
38+
* accesskit_windows bumped from 0.14.3 to 0.15.0
39+
* accesskit_macos bumped from 0.9.0 to 0.10.0
40+
* accesskit_unix bumped from 0.5.2 to 0.6.0
41+
2142
## [0.5.0](https://github.com/AccessKit/accesskit/compare/accesskit_c-v0.4.0...accesskit_c-v0.5.0) (2023-08-08)
2243

2344

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

3+
## [0.12.0](https://github.com/AccessKit/accesskit/compare/accesskit-v0.11.2...accesskit-v0.12.0) (2023-08-18)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* Switch to simple unsigned 64-bit integer for node IDs ([#276](https://github.com/AccessKit/accesskit/issues/276))
9+
10+
### Bug Fixes
11+
12+
* Support the pyo3 crate in all public enums ([#270](https://github.com/AccessKit/accesskit/issues/270)) ([9b12d0c](https://github.com/AccessKit/accesskit/commit/9b12d0c3d828d4c847510b611d891872c4666984))
13+
14+
15+
### Code Refactoring
16+
17+
* 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))
18+
319
## [0.11.2](https://github.com/AccessKit/accesskit/compare/accesskit-v0.11.1...accesskit-v0.11.2) (2023-08-08)
420

521

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: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,29 @@
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-18)
20+
21+
22+
### ⚠ BREAKING CHANGES
23+
24+
* Switch to simple unsigned 64-bit integer for node IDs ([#276](https://github.com/AccessKit/accesskit/issues/276))
25+
26+
### Bug Fixes
27+
28+
* Support text fields without a value property ([#274](https://github.com/AccessKit/accesskit/issues/274)) ([5ae557b](https://github.com/AccessKit/accesskit/commit/5ae557b40d395b4a9966a90a2d80e7d97ad50bf9))
29+
30+
31+
### Code Refactoring
32+
33+
* 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))
34+
35+
36+
### Dependencies
37+
38+
* The following workspace dependencies were updated
39+
* dependencies
40+
* accesskit bumped from 0.11.2 to 0.12.0
41+
1942
## [0.15.0](https://github.com/AccessKit/accesskit/compare/accesskit_consumer-v0.14.2...accesskit_consumer-v0.15.0) (2023-03-30)
2043

2144

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: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,30 @@
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-18)
17+
18+
19+
### ⚠ BREAKING CHANGES
20+
21+
* Switch to simple unsigned 64-bit integer for node IDs ([#276](https://github.com/AccessKit/accesskit/issues/276))
22+
23+
### Bug Fixes
24+
25+
* Support text fields without a value property ([#274](https://github.com/AccessKit/accesskit/issues/274)) ([5ae557b](https://github.com/AccessKit/accesskit/commit/5ae557b40d395b4a9966a90a2d80e7d97ad50bf9))
26+
27+
28+
### Code Refactoring
29+
30+
* 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))
31+
32+
33+
### Dependencies
34+
35+
* The following workspace dependencies were updated
36+
* dependencies
37+
* accesskit bumped from 0.11.2 to 0.12.0
38+
* accesskit_consumer bumped from 0.15.2 to 0.16.0
39+
1640
## [0.9.0](https://github.com/AccessKit/accesskit/compare/accesskit_macos-v0.8.0...accesskit_macos-v0.9.0) (2023-08-08)
1741

1842

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: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,25 @@
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-18)
28+
29+
30+
### ⚠ BREAKING CHANGES
31+
32+
* Switch to simple unsigned 64-bit integer for node IDs ([#276](https://github.com/AccessKit/accesskit/issues/276))
33+
34+
### Code Refactoring
35+
36+
* 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))
37+
38+
39+
### Dependencies
40+
41+
* The following workspace dependencies were updated
42+
* dependencies
43+
* accesskit bumped from 0.11.2 to 0.12.0
44+
* accesskit_consumer bumped from 0.15.2 to 0.16.0
45+
2746
## [0.5.0](https://github.com/AccessKit/accesskit/compare/accesskit_unix-v0.4.0...accesskit_unix-v0.5.0) (2023-05-21)
2847

2948

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: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,30 @@
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-18)
32+
33+
34+
### ⚠ BREAKING CHANGES
35+
36+
* Switch to simple unsigned 64-bit integer for node IDs ([#276](https://github.com/AccessKit/accesskit/issues/276))
37+
38+
### Bug Fixes
39+
40+
* Support text fields without a value property ([#274](https://github.com/AccessKit/accesskit/issues/274)) ([5ae557b](https://github.com/AccessKit/accesskit/commit/5ae557b40d395b4a9966a90a2d80e7d97ad50bf9))
41+
42+
43+
### Code Refactoring
44+
45+
* 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))
46+
47+
48+
### Dependencies
49+
50+
* The following workspace dependencies were updated
51+
* dependencies
52+
* accesskit bumped from 0.11.2 to 0.12.0
53+
* accesskit_consumer bumped from 0.15.2 to 0.16.0
54+
3155
## [0.14.3](https://github.com/AccessKit/accesskit/compare/accesskit_windows-v0.14.2...accesskit_windows-v0.14.3) (2023-08-08)
3256

3357

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: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,27 @@
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-18)
77+
78+
79+
### ⚠ BREAKING CHANGES
80+
81+
* Switch to simple unsigned 64-bit integer for node IDs ([#276](https://github.com/AccessKit/accesskit/issues/276))
82+
83+
### Code Refactoring
84+
85+
* 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))
86+
87+
88+
### Dependencies
89+
90+
* The following workspace dependencies were updated
91+
* dependencies
92+
* accesskit bumped from 0.11.2 to 0.12.0
93+
* accesskit_windows bumped from 0.14.3 to 0.15.0
94+
* accesskit_macos bumped from 0.9.0 to 0.10.0
95+
* accesskit_unix bumped from 0.5.2 to 0.6.0
96+
7697
## [0.14.0](https://github.com/AccessKit/accesskit/compare/accesskit_winit-v0.13.0...accesskit_winit-v0.14.0) (2023-05-21)
7798

7899

platforms/winit/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_winit"
3-
version = "0.14.4"
3+
version = "0.15.0"
44
authors = ["Matt Campbell <[email protected]>"]
55
license = "Apache-2.0"
66
description = "AccessKit UI accessibility infrastructure: winit adapter"
@@ -16,17 +16,17 @@ async-io = ["accesskit_unix/async-io"]
1616
tokio = ["accesskit_unix/tokio"]
1717

1818
[dependencies]
19-
accesskit = { version = "0.11.2", path = "../../common" }
19+
accesskit = { version = "0.12.0", path = "../../common" }
2020
winit = { version = "0.28", default-features = false }
2121

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

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

2828
[target.'cfg(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd", target_os = "openbsd", target_os = "netbsd"))'.dependencies]
29-
accesskit_unix = { version = "0.5.2", path = "../unix", optional = true, default-features = false }
29+
accesskit_unix = { version = "0.6.0", path = "../unix", optional = true, default-features = false }
3030

3131
[dev-dependencies]
3232
winit = "0.28"

0 commit comments

Comments
 (0)