Skip to content

Commit 75cc2c7

Browse files
author
Matt Campbell
committed
chore: release main
1 parent c2db1b0 commit 75cc2c7

16 files changed

+90
-30
lines changed

.release-please-manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"common":"0.11.1","consumer":"0.15.1","platforms/macos":"0.8.0","platforms/windows":"0.14.1","platforms/winit":"0.14.2","platforms/unix":"0.5.1","bindings/c":"0.4.0"}
1+
{"common":"0.11.2","consumer":"0.15.2","platforms/macos":"0.9.0","platforms/windows":"0.14.2","platforms/winit":"0.14.3","platforms/unix":"0.5.2","bindings/c":"0.5.0"}

Cargo.lock

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

bindings/c/CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,23 @@
1414
* dependencies
1515
* accesskit_macos bumped from 0.7.0 to 0.7.1
1616

17+
## [0.5.0](https://github.com/AccessKit/accesskit/compare/accesskit_c-v0.4.0...accesskit_c-v0.5.0) (2023-08-07)
18+
19+
20+
### Features
21+
22+
* Workaround for libraries that put the macOS keyboard focus on the window rather than the content view ([#266](https://github.com/AccessKit/accesskit/issues/266)) ([c2db1b0](https://github.com/AccessKit/accesskit/commit/c2db1b0424e905d87691f8148f28b77405f29926))
23+
24+
25+
### Dependencies
26+
27+
* The following workspace dependencies were updated
28+
* dependencies
29+
* accesskit bumped from 0.11.1 to 0.11.2
30+
* accesskit_windows bumped from 0.14.1 to 0.14.2
31+
* accesskit_macos bumped from 0.8.0 to 0.9.0
32+
* accesskit_unix bumped from 0.5.1 to 0.5.2
33+
1734
## [0.4.0](https://github.com/AccessKit/accesskit/compare/accesskit_c-v0.3.2...accesskit_c-v0.4.0) (2023-07-30)
1835

1936

bindings/c/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "accesskit_c"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
authors = ["Arnold Loubriat <[email protected]>"]
55
license = "MIT/Apache-2.0"
66
publish = false
@@ -14,14 +14,14 @@ crate-type = ["cdylib", "staticlib"]
1414
cbindgen = []
1515

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

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

2323
[target.'cfg(target_os = "macos")'.dependencies]
24-
accesskit_macos = { version = "0.8.0", path = "../../platforms/macos" }
24+
accesskit_macos = { version = "0.9.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.1", path = "../../platforms/unix" }
27+
accesskit_unix = { version = "0.5.2", path = "../../platforms/unix" }

common/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [0.11.2](https://github.com/AccessKit/accesskit/compare/accesskit-v0.11.1...accesskit-v0.11.2) (2023-08-07)
4+
5+
6+
### Bug Fixes
7+
8+
* Support the enumn crate in all public enums ([#264](https://github.com/AccessKit/accesskit/issues/264)) ([b9b3cd1](https://github.com/AccessKit/accesskit/commit/b9b3cd18fccdd6526fb4f58c13eb91599452a3d6))
9+
310
## [0.11.1](https://github.com/AccessKit/accesskit/compare/accesskit-v0.11.0...accesskit-v0.11.1) (2023-07-30)
411

512

common/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "accesskit"
3-
version = "0.11.1"
3+
version = "0.11.2"
44
authors = ["Matt Campbell <[email protected]>"]
55
license = "MIT/Apache-2.0"
66
description = "UI accessibility infrastructure across platforms"

consumer/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@
1212
* dependencies
1313
* accesskit bumped from 0.11.0 to 0.11.1
1414

15+
* The following workspace dependencies were updated
16+
* dependencies
17+
* accesskit bumped from 0.11.1 to 0.11.2
18+
1519
## [0.15.0](https://github.com/AccessKit/accesskit/compare/accesskit_consumer-v0.14.2...accesskit_consumer-v0.15.0) (2023-03-30)
1620

1721

consumer/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "accesskit_consumer"
3-
version = "0.15.1"
3+
version = "0.15.2"
44
authors = ["Matt Campbell <[email protected]>"]
55
license = "MIT/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.1", path = "../common" }
14+
accesskit = { version = "0.11.2", path = "../common" }
1515

platforms/macos/CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,21 @@
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.9.0](https://github.com/AccessKit/accesskit/compare/accesskit_macos-v0.8.0...accesskit_macos-v0.9.0) (2023-08-07)
17+
18+
19+
### Features
20+
21+
* Workaround for libraries that put the macOS keyboard focus on the window rather than the content view ([#266](https://github.com/AccessKit/accesskit/issues/266)) ([c2db1b0](https://github.com/AccessKit/accesskit/commit/c2db1b0424e905d87691f8148f28b77405f29926))
22+
23+
24+
### Dependencies
25+
26+
* The following workspace dependencies were updated
27+
* dependencies
28+
* accesskit bumped from 0.11.1 to 0.11.2
29+
* accesskit_consumer bumped from 0.15.1 to 0.15.2
30+
1631
## [0.8.0](https://github.com/AccessKit/accesskit/compare/accesskit_macos-v0.7.1...accesskit_macos-v0.8.0) (2023-07-30)
1732

1833

platforms/macos/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "accesskit_macos"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
authors = ["Matt Campbell <[email protected]>"]
55
license = "MIT/Apache-2.0"
66
description = "AccessKit UI accessibility infrastructure: macOS adapter"
@@ -14,8 +14,8 @@ edition = "2021"
1414
default-target = "x86_64-apple-darwin"
1515

1616
[dependencies]
17-
accesskit = { version = "0.11.1", path = "../../common" }
18-
accesskit_consumer = { version = "0.15.1", path = "../../consumer" }
17+
accesskit = { version = "0.11.2", path = "../../common" }
18+
accesskit_consumer = { version = "0.15.2", 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"
2121

platforms/unix/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@
1919
* accesskit bumped from 0.11.0 to 0.11.1
2020
* accesskit_consumer bumped from 0.15.0 to 0.15.1
2121

22+
* The following workspace dependencies were updated
23+
* dependencies
24+
* accesskit bumped from 0.11.1 to 0.11.2
25+
* accesskit_consumer bumped from 0.15.1 to 0.15.2
26+
2227
## [0.5.0](https://github.com/AccessKit/accesskit/compare/accesskit_unix-v0.4.0...accesskit_unix-v0.5.0) (2023-05-21)
2328

2429

platforms/unix/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "accesskit_unix"
3-
version = "0.5.1"
3+
version = "0.5.2"
44
authors = ["Arnold Loubriat <[email protected]>"]
55
license = "MIT/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.1", path = "../../common" }
20-
accesskit_consumer = { version = "0.15.1", path = "../../consumer" }
19+
accesskit = { version = "0.11.2", path = "../../common" }
20+
accesskit_consumer = { version = "0.15.2", 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

+5
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,11 @@
2323
* accesskit bumped from 0.11.0 to 0.11.1
2424
* accesskit_consumer bumped from 0.15.0 to 0.15.1
2525

26+
* The following workspace dependencies were updated
27+
* dependencies
28+
* accesskit bumped from 0.11.1 to 0.11.2
29+
* accesskit_consumer bumped from 0.15.1 to 0.15.2
30+
2631
## [0.14.0](https://github.com/AccessKit/accesskit/compare/accesskit_windows-v0.13.3...accesskit_windows-v0.14.0) (2023-03-30)
2732

2833

platforms/windows/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "accesskit_windows"
3-
version = "0.14.1"
3+
version = "0.14.2"
44
authors = ["Matt Campbell <[email protected]>"]
55
license = "MIT/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.1", path = "../../common" }
15-
accesskit_consumer = { version = "0.15.1", path = "../../consumer" }
14+
accesskit = { version = "0.11.2", path = "../../common" }
15+
accesskit_consumer = { version = "0.15.2", path = "../../consumer" }
1616
arrayvec = "0.7.1"
1717
once_cell = "1.13.0"
1818
paste = "1.0"

platforms/winit/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,13 @@
6262
* accesskit_macos bumped from 0.7.1 to 0.8.0
6363
* accesskit_unix bumped from 0.5.0 to 0.5.1
6464

65+
* The following workspace dependencies were updated
66+
* dependencies
67+
* accesskit bumped from 0.11.1 to 0.11.2
68+
* accesskit_windows bumped from 0.14.1 to 0.14.2
69+
* accesskit_macos bumped from 0.8.0 to 0.9.0
70+
* accesskit_unix bumped from 0.5.1 to 0.5.2
71+
6572
## [0.14.0](https://github.com/AccessKit/accesskit/compare/accesskit_winit-v0.13.0...accesskit_winit-v0.14.0) (2023-05-21)
6673

6774

platforms/winit/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "accesskit_winit"
3-
version = "0.14.2"
3+
version = "0.14.3"
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.1", path = "../../common" }
19+
accesskit = { version = "0.11.2", path = "../../common" }
2020
winit = { version = "0.28", default-features = false }
2121

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

2525
[target.'cfg(target_os = "macos")'.dependencies]
26-
accesskit_macos = { version = "0.8.0", path = "../macos" }
26+
accesskit_macos = { version = "0.9.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.1", path = "../unix", optional = true, default-features = false }
29+
accesskit_unix = { version = "0.5.2", path = "../unix", optional = true, default-features = false }
3030

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

0 commit comments

Comments
 (0)