Skip to content

Commit e3687b4

Browse files
chore: release main
1 parent 3c527c7 commit e3687b4

File tree

10 files changed

+66
-13
lines changed

10 files changed

+66
-13
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.8.1","consumer":"0.10.0","platforms/macos":"0.2.1","platforms/windows":"0.10.1","platforms/winit":"0.7.1"}
1+
{"common":"0.8.1","consumer":"0.11.0","platforms/macos":"0.3.0","platforms/windows":"0.10.2","platforms/winit":"0.7.2"}

Cargo.lock

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

consumer/CHANGELOG.md

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

3+
## [0.11.0](https://github.com/AccessKit/accesskit/compare/accesskit_consumer-v0.10.0...accesskit_consumer-v0.11.0) (2022-12-17)
4+
5+
6+
### Features
7+
8+
* Text support on macOS ([#191](https://github.com/AccessKit/accesskit/issues/191)) ([3a35dbe](https://github.com/AccessKit/accesskit/commit/3a35dbe02122c789fe682995c5b7e022aef5cc36))
9+
10+
11+
### Bug Fixes
12+
13+
* More reliable handling of the edge case for wrapped lines ([#192](https://github.com/AccessKit/accesskit/issues/192)) ([c626d2c](https://github.com/AccessKit/accesskit/commit/c626d2c3028085b076ada7dd31242cf3ca3c0f08))
14+
315
## [0.10.0](https://github.com/AccessKit/accesskit/compare/accesskit_consumer-v0.9.1...accesskit_consumer-v0.10.0) (2022-12-04)
416

517

consumer/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_consumer"
3-
version = "0.10.0"
3+
version = "0.11.0"
44
authors = ["Matt Campbell <mattcampbell@pobox.com>"]
55
license = "MIT/Apache-2.0"
66
description = "AccessKit consumer library (internal)"

platforms/macos/CHANGELOG.md

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

3+
## [0.3.0](https://github.com/AccessKit/accesskit/compare/accesskit_macos-v0.2.1...accesskit_macos-v0.3.0) (2022-12-17)
4+
5+
6+
### Features
7+
8+
* Text support on macOS ([#191](https://github.com/AccessKit/accesskit/issues/191)) ([3a35dbe](https://github.com/AccessKit/accesskit/commit/3a35dbe02122c789fe682995c5b7e022aef5cc36))
9+
10+
11+
### Bug Fixes
12+
13+
* Don't expose the window title in our root element on macOS ([#187](https://github.com/AccessKit/accesskit/issues/187)) ([9739b74](https://github.com/AccessKit/accesskit/commit/9739b7424328da45c1c43b6db49af142a8789aa5))
14+
* Expose which accessibility selectors are actually allowed for a particular node ([#181](https://github.com/AccessKit/accesskit/issues/181)) ([c4cbb23](https://github.com/AccessKit/accesskit/commit/c4cbb23156749d513df4e520dcb9be0a74c697d3))
15+
* More reliable handling of the edge case for wrapped lines ([#192](https://github.com/AccessKit/accesskit/issues/192)) ([c626d2c](https://github.com/AccessKit/accesskit/commit/c626d2c3028085b076ada7dd31242cf3ca3c0f08))
16+
17+
18+
### Dependencies
19+
20+
* The following workspace dependencies were updated
21+
* dependencies
22+
* accesskit_consumer bumped from 0.10.0 to 0.11.0
23+
324
## [0.2.1](https://github.com/AccessKit/accesskit/compare/accesskit_macos-v0.2.0...accesskit_macos-v0.2.1) (2022-12-04)
425

526

platforms/macos/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_macos"
3-
version = "0.2.1"
3+
version = "0.3.0"
44
authors = ["Matt Campbell <mattcampbell@pobox.com>"]
55
license = "MIT/Apache-2.0"
66
description = "AccessKit UI accessibility infrastructure: macOS adapter"
@@ -12,7 +12,7 @@ edition = "2021"
1212

1313
[dependencies]
1414
accesskit = { version = "0.8.1", path = "../../common" }
15-
accesskit_consumer = { version = "0.10.0", path = "../../consumer" }
15+
accesskit_consumer = { version = "0.11.0", path = "../../consumer" }
1616
objc2 = "0.3.0-beta.3"
1717
once_cell = "1.13.0"
1818
parking_lot = "0.12.1"

platforms/windows/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,21 @@
55
* accesskit bumped from 0.8.0 to 0.8.1
66
* accesskit_consumer bumped from 0.9.1 to 0.10.0
77

8+
## [0.10.2](https://github.com/AccessKit/accesskit/compare/accesskit_windows-v0.10.1...accesskit_windows-v0.10.2) (2022-12-17)
9+
10+
11+
### Bug Fixes
12+
13+
* Correct broken UIA method implementation that was incompatible with Windows 11 ATs ([#193](https://github.com/AccessKit/accesskit/issues/193)) ([3c527c7](https://github.com/AccessKit/accesskit/commit/3c527c76cb4139402d2b5550d2eb1ad12e07ebe5))
14+
* More reliable handling of the edge case for wrapped lines ([#192](https://github.com/AccessKit/accesskit/issues/192)) ([c626d2c](https://github.com/AccessKit/accesskit/commit/c626d2c3028085b076ada7dd31242cf3ca3c0f08))
15+
16+
17+
### Dependencies
18+
19+
* The following workspace dependencies were updated
20+
* dependencies
21+
* accesskit_consumer bumped from 0.10.0 to 0.11.0
22+
823
## [0.10.0](https://github.com/AccessKit/accesskit/compare/accesskit_windows-v0.9.3...accesskit_windows-v0.10.0) (2022-11-29)
924

1025

platforms/windows/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_windows"
3-
version = "0.10.1"
3+
version = "0.10.2"
44
authors = ["Matt Campbell <mattcampbell@pobox.com>"]
55
license = "MIT/Apache-2.0"
66
description = "AccessKit UI accessibility infrastructure: Windows adapter"
@@ -12,7 +12,7 @@ edition = "2021"
1212

1313
[dependencies]
1414
accesskit = { version = "0.8.1", path = "../../common" }
15-
accesskit_consumer = { version = "0.10.0", path = "../../consumer" }
15+
accesskit_consumer = { version = "0.11.0", path = "../../consumer" }
1616
arrayvec = "0.7.1"
1717
once_cell = "1.13.0"
1818
parking_lot = "0.12.1"

platforms/winit/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@
1010
* accesskit_windows bumped from 0.10.0 to 0.10.1
1111
* accesskit_macos bumped from 0.2.0 to 0.2.1
1212

13+
* The following workspace dependencies were updated
14+
* dependencies
15+
* accesskit_windows bumped from 0.10.1 to 0.10.2
16+
* accesskit_macos bumped from 0.2.1 to 0.3.0
17+
1318
## [0.7.0](https://github.com/AccessKit/accesskit/compare/accesskit_winit-v0.6.6...accesskit_winit-v0.7.0) (2022-11-29)
1419

1520

platforms/winit/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_winit"
3-
version = "0.7.1"
3+
version = "0.7.2"
44
authors = ["Matt Campbell <mattcampbell@pobox.com>"]
55
license = "Apache-2.0"
66
description = "AccessKit UI accessibility infrastructure: winit adapter"
@@ -16,10 +16,10 @@ parking_lot = "0.12.1"
1616
winit = { version = "0.27.2", default-features = false, features = ["x11", "wayland", "wayland-dlopen"] }
1717

1818
[target.'cfg(target_os = "windows")'.dependencies]
19-
accesskit_windows = { version = "0.10.1", path = "../windows" }
19+
accesskit_windows = { version = "0.10.2", path = "../windows" }
2020

2121
[target.'cfg(target_os = "macos")'.dependencies]
22-
accesskit_macos = { version = "0.2.1", path = "../macos" }
22+
accesskit_macos = { version = "0.3.0", path = "../macos" }
2323

2424
[dev-dependencies]
2525
winit = "0.27.2"

0 commit comments

Comments
 (0)