Skip to content

Commit 3ffb652

Browse files
chore: release main (#183)
1 parent d263938 commit 3ffb652

File tree

12 files changed

+67
-19
lines changed

12 files changed

+67
-19
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.0","consumer":"0.9.1","platforms/macos":"0.2.0","platforms/windows":"0.10.0","platforms/winit":"0.7.0"}
1+
{"common":"0.8.1","consumer":"0.10.0","platforms/macos":"0.2.1","platforms/windows":"0.10.1","platforms/winit":"0.7.1"}

Cargo.lock

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

common/CHANGELOG.md

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

3+
## [0.8.1](https://github.com/AccessKit/accesskit/compare/accesskit-v0.8.0...accesskit-v0.8.1) (2022-12-04)
4+
5+
6+
### Documentation
7+
8+
* Fix outdated documentation for `TreeUpdate` ([#182](https://github.com/AccessKit/accesskit/issues/182)) ([dd658c7](https://github.com/AccessKit/accesskit/commit/dd658c70df55b2234a0346220362b0b9a40bb41d))
9+
310
## [0.8.0](https://www.github.com/AccessKit/accesskit/compare/accesskit-v0.7.0...accesskit-v0.8.0) (2022-11-17)
411

512

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.8.0"
3+
version = "0.8.1"
44
authors = ["Matt Campbell <mattcampbell@pobox.com>"]
55
license = "MIT/Apache-2.0"
66
description = "UI accessibility infrastructure across platforms"

consumer/CHANGELOG.md

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

3+
## [0.10.0](https://github.com/AccessKit/accesskit/compare/accesskit_consumer-v0.9.1...accesskit_consumer-v0.10.0) (2022-12-04)
4+
5+
6+
### Features
7+
8+
* Automatically get button and link labels from descendants ([#184](https://github.com/AccessKit/accesskit/issues/184)) ([ec5c38e](https://github.com/AccessKit/accesskit/commit/ec5c38ef3001a10b7a135df1438901246463f3e1))
9+
10+
11+
### Dependencies
12+
13+
* The following workspace dependencies were updated
14+
* dependencies
15+
* accesskit bumped from 0.8.0 to 0.8.1
16+
317
### [0.9.1](https://www.github.com/AccessKit/accesskit/compare/accesskit_consumer-v0.9.0...accesskit_consumer-v0.9.1) (2022-11-25)
418

519

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.9.1"
3+
version = "0.10.0"
44
authors = ["Matt Campbell <mattcampbell@pobox.com>"]
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.8.0", path = "../common" }
14+
accesskit = { version = "0.8.1", path = "../common" }
1515
parking_lot = "0.12.1"

platforms/macos/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.2.1](https://github.com/AccessKit/accesskit/compare/accesskit_macos-v0.2.0...accesskit_macos-v0.2.1) (2022-12-04)
4+
5+
6+
### Bug Fixes
7+
8+
* Correctly apply the DPI scale factor to coordinates ([#185](https://github.com/AccessKit/accesskit/issues/185)) ([d263938](https://github.com/AccessKit/accesskit/commit/d263938d68bb63567853a340d3466ff27e076d87))
9+
* Expose static text as the value rather than the title on macOS ([#186](https://github.com/AccessKit/accesskit/issues/186)) ([e3720c8](https://github.com/AccessKit/accesskit/commit/e3720c8e2d7c5e8c8601c52ad620dcfcacebc570))
10+
11+
12+
### Dependencies
13+
14+
* The following workspace dependencies were updated
15+
* dependencies
16+
* accesskit bumped from 0.8.0 to 0.8.1
17+
* accesskit_consumer bumped from 0.9.1 to 0.10.0
18+
319
## [0.2.0](https://github.com/AccessKit/accesskit/compare/accesskit_macos-v0.1.5...accesskit_macos-v0.2.0) (2022-11-29)
420

521

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

1313
[dependencies]
14-
accesskit = { version = "0.8.0", path = "../../common" }
15-
accesskit_consumer = { version = "0.9.1", path = "../../consumer" }
14+
accesskit = { version = "0.8.1", path = "../../common" }
15+
accesskit_consumer = { version = "0.10.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: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
* The following workspace dependencies were updated
4+
* dependencies
5+
* accesskit bumped from 0.8.0 to 0.8.1
6+
* accesskit_consumer bumped from 0.9.1 to 0.10.0
7+
38
## [0.10.0](https://github.com/AccessKit/accesskit/compare/accesskit_windows-v0.9.3...accesskit_windows-v0.10.0) (2022-11-29)
49

510

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.10.0"
3+
version = "0.10.1"
44
authors = ["Matt Campbell <mattcampbell@pobox.com>"]
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.8.0", path = "../../common" }
15-
accesskit_consumer = { version = "0.9.1", path = "../../consumer" }
14+
accesskit = { version = "0.8.1", path = "../../common" }
15+
accesskit_consumer = { version = "0.10.0", path = "../../consumer" }
1616
arrayvec = "0.7.1"
1717
once_cell = "1.13.0"
1818
parking_lot = "0.12.1"

0 commit comments

Comments
 (0)