Skip to content

Commit 472756c

Browse files
chore: release main (#219)
1 parent a6b0a12 commit 472756c

File tree

14 files changed

+67
-24
lines changed

14 files changed

+67
-24
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.10.0","consumer":"0.14.0","platforms/macos":"0.6.0","platforms/windows":"0.13.0","platforms/winit":"0.12.1","platforms/unix":"0.3.1"}
1+
{"common":"0.10.1","consumer":"0.14.1","platforms/macos":"0.6.1","platforms/windows":"0.13.1","platforms/winit":"0.12.2","platforms/unix":"0.3.2"}

Cargo.lock

Lines changed: 6 additions & 6 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.10.1](https://github.com/AccessKit/accesskit/compare/accesskit-v0.10.0...accesskit-v0.10.1) (2023-02-20)
4+
5+
6+
### Bug Fixes
7+
8+
* Set appropriate representations on all public types that will be exposed via FFI ([54e82f6](https://github.com/AccessKit/accesskit/commit/54e82f673f5c7b46d9077fe5f946305800862bf0))
9+
310
## [0.10.0](https://github.com/AccessKit/accesskit/compare/accesskit-v0.9.0...accesskit-v0.10.0) (2023-02-12)
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.10.0"
3+
version = "0.10.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: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
* The following workspace dependencies were updated
4+
* dependencies
5+
* accesskit bumped from 0.10.0 to 0.10.1
6+
37
## [0.14.0](https://github.com/AccessKit/accesskit/compare/accesskit_consumer-v0.13.0...accesskit_consumer-v0.14.0) (2023-02-12)
48

59

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.14.0"
3+
version = "0.14.1"
44
authors = ["Matt Campbell <mattcampbell@pobox.com>"]
55
license = "MIT/Apache-2.0"
66
description = "AccessKit consumer library (internal)"
@@ -11,4 +11,4 @@ readme = "README.md"
1111
edition = "2021"
1212

1313
[dependencies]
14-
accesskit = { version = "0.10.0", path = "../common" }
14+
accesskit = { version = "0.10.1", path = "../common" }

platforms/macos/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@
88
* dependencies
99
* accesskit_consumer bumped from 0.12.0 to 0.12.1
1010

11+
* The following workspace dependencies were updated
12+
* dependencies
13+
* accesskit bumped from 0.10.0 to 0.10.1
14+
* accesskit_consumer bumped from 0.14.0 to 0.14.1
15+
1116
## [0.6.0](https://github.com/AccessKit/accesskit/compare/accesskit_macos-v0.5.0...accesskit_macos-v0.6.0) (2023-02-12)
1217

1318

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

1313
[dependencies]
14-
accesskit = { version = "0.10.0", path = "../../common" }
15-
accesskit_consumer = { version = "0.14.0", path = "../../consumer" }
14+
accesskit = { version = "0.10.1", path = "../../common" }
15+
accesskit_consumer = { version = "0.14.1", path = "../../consumer" }
1616
objc2 = "=0.3.0-beta.3"
1717
once_cell = "1.13.0"

platforms/unix/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44
* dependencies
55
* accesskit_consumer bumped from 0.12.0 to 0.12.1
66

7+
* The following workspace dependencies were updated
8+
* dependencies
9+
* accesskit bumped from 0.10.0 to 0.10.1
10+
* accesskit_consumer bumped from 0.14.0 to 0.14.1
11+
712
## [0.3.1](https://github.com/AccessKit/accesskit/compare/accesskit_unix-v0.3.0...accesskit_unix-v0.3.1) (2023-02-20)
813

914

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.3.1"
3+
version = "0.3.2"
44
authors = ["Arnold Loubriat <datatriny@gmail.com>"]
55
license = "MIT/Apache-2.0"
66
description = "AccessKit UI accessibility infrastructure: Linux adapter"
@@ -11,8 +11,8 @@ readme = "README.md"
1111
edition = "2021"
1212

1313
[dependencies]
14-
accesskit = { version = "0.10.0", path = "../../common" }
15-
accesskit_consumer = { version = "0.14.0", path = "../../consumer" }
14+
accesskit = { version = "0.10.1", path = "../../common" }
15+
accesskit_consumer = { version = "0.14.1", path = "../../consumer" }
1616
async-channel = "1.8.0"
1717
atspi = "0.10.1"
1818
futures-lite = "1.12.0"

0 commit comments

Comments
 (0)