Skip to content

Commit 705b0cf

Browse files
author
Matt Campbell
committed
chore: release main
1 parent 3f556c9 commit 705b0cf

File tree

8 files changed

+35
-9
lines changed

8 files changed

+35
-9
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.0","consumer":"0.15.0","platforms/macos":"0.7.1","platforms/windows":"0.14.0","platforms/winit":"0.14.1","platforms/unix":"0.5.0","bindings/c":"0.3.2"}
1+
{"common":"0.11.0","consumer":"0.15.0","platforms/macos":"0.8.0","platforms/windows":"0.14.0","platforms/winit":"0.14.2","platforms/unix":"0.5.0","bindings/c":"0.4.0"}

Cargo.lock

Lines changed: 3 additions & 3 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: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,21 @@
1414
* dependencies
1515
* accesskit_macos bumped from 0.7.0 to 0.7.1
1616

17+
## [0.4.0](https://github.com/AccessKit/accesskit/compare/accesskit_c-v0.3.2...accesskit_c-v0.4.0) (2023-06-24)
18+
19+
20+
### Features
21+
22+
* Add CMake support to C bindings ([#247](https://github.com/AccessKit/accesskit/issues/247)) ([3f556c9](https://github.com/AccessKit/accesskit/commit/3f556c995e8c5eae6831a89b0173809134c1b4e7))
23+
* Add window-based constructor to macOS subclassing adapter ([#253](https://github.com/AccessKit/accesskit/issues/253)) ([022ef04](https://github.com/AccessKit/accesskit/commit/022ef045b9f28262b738ee1ca29a4c7303061fb3))
24+
25+
26+
### Dependencies
27+
28+
* The following workspace dependencies were updated
29+
* dependencies
30+
* accesskit_macos bumped from 0.7.1 to 0.8.0
31+
1732
## [0.3.0](https://github.com/AccessKit/accesskit/compare/accesskit_c-v0.2.0...accesskit_c-v0.3.0) (2023-04-25)
1833

1934

bindings/c/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_c"
3-
version = "0.3.2"
3+
version = "0.4.0"
44
authors = ["Arnold Loubriat <datatriny@gmail.com>"]
55
license = "MIT/Apache-2.0"
66
publish = false
@@ -21,7 +21,7 @@ paste = "1.0"
2121
accesskit_windows = { version = "0.14.0", path = "../../platforms/windows" }
2222

2323
[target.'cfg(target_os = "macos")'.dependencies]
24-
accesskit_macos = { version = "0.7.1", path = "../../platforms/macos" }
24+
accesskit_macos = { version = "0.8.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]
2727
accesskit_unix = { version = "0.5.0", path = "../../platforms/unix" }

platforms/macos/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,13 @@
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.8.0](https://github.com/AccessKit/accesskit/compare/accesskit_macos-v0.7.1...accesskit_macos-v0.8.0) (2023-06-24)
17+
18+
19+
### Features
20+
21+
* Add window-based constructor to macOS subclassing adapter ([#253](https://github.com/AccessKit/accesskit/issues/253)) ([022ef04](https://github.com/AccessKit/accesskit/commit/022ef045b9f28262b738ee1ca29a4c7303061fb3))
22+
1623
## [0.7.1](https://github.com/AccessKit/accesskit/compare/accesskit_macos-v0.7.0...accesskit_macos-v0.7.1) (2023-06-20)
1724

1825

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

platforms/winit/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,10 @@
5555
* dependencies
5656
* accesskit_macos bumped from 0.7.0 to 0.7.1
5757

58+
* The following workspace dependencies were updated
59+
* dependencies
60+
* accesskit_macos bumped from 0.7.1 to 0.8.0
61+
5862
## [0.14.0](https://github.com/AccessKit/accesskit/compare/accesskit_winit-v0.13.0...accesskit_winit-v0.14.0) (2023-05-21)
5963

6064

platforms/winit/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_winit"
3-
version = "0.14.1"
3+
version = "0.14.2"
44
authors = ["Matt Campbell <mattcampbell@pobox.com>"]
55
license = "Apache-2.0"
66
description = "AccessKit UI accessibility infrastructure: winit adapter"
@@ -23,7 +23,7 @@ winit = { version = "0.28", default-features = false }
2323
accesskit_windows = { version = "0.14.0", path = "../windows" }
2424

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

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

0 commit comments

Comments
 (0)