Skip to content

Commit 6b82665

Browse files
authored
chore: release main (#254)
1 parent b260a86 commit 6b82665

File tree

16 files changed

+100
-30
lines changed

16 files changed

+100
-30
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.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"}

Cargo.lock

Lines changed: 7 additions & 7 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: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,33 @@
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-07-30)
18+
19+
20+
### ⚠ BREAKING CHANGES
21+
22+
* New C API for tree updates ([#263](https://github.com/AccessKit/accesskit/issues/263))
23+
24+
### Features
25+
26+
* Add CMake support to C bindings ([#247](https://github.com/AccessKit/accesskit/issues/247)) ([3f556c9](https://github.com/AccessKit/accesskit/commit/3f556c995e8c5eae6831a89b0173809134c1b4e7))
27+
* Add window-based constructor to macOS subclassing adapter ([#253](https://github.com/AccessKit/accesskit/issues/253)) ([022ef04](https://github.com/AccessKit/accesskit/commit/022ef045b9f28262b738ee1ca29a4c7303061fb3))
28+
29+
30+
### Code Refactoring
31+
32+
* New C API for tree updates ([#263](https://github.com/AccessKit/accesskit/issues/263)) ([b260a86](https://github.com/AccessKit/accesskit/commit/b260a860e6f47cf7ef4e10c407123d91c5b35297))
33+
34+
35+
### Dependencies
36+
37+
* The following workspace dependencies were updated
38+
* dependencies
39+
* accesskit bumped from 0.11.0 to 0.11.1
40+
* accesskit_windows bumped from 0.14.0 to 0.14.1
41+
* accesskit_macos bumped from 0.7.1 to 0.8.0
42+
* accesskit_unix bumped from 0.5.0 to 0.5.1
43+
1744
## [0.3.0](https://github.com/AccessKit/accesskit/compare/accesskit_c-v0.2.0...accesskit_c-v0.3.0) (2023-04-25)
1845

1946

bindings/c/Cargo.toml

Lines changed: 5 additions & 5 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
@@ -14,14 +14,14 @@ crate-type = ["cdylib", "staticlib"]
1414
cbindgen = []
1515

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

2020
[target.'cfg(target_os = "windows")'.dependencies]
21-
accesskit_windows = { version = "0.14.0", path = "../../platforms/windows" }
21+
accesskit_windows = { version = "0.14.1", 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]
27-
accesskit_unix = { version = "0.5.0", path = "../../platforms/unix" }
27+
accesskit_unix = { version = "0.5.1", path = "../../platforms/unix" }

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.11.1](https://github.com/AccessKit/accesskit/compare/accesskit-v0.11.0...accesskit-v0.11.1) (2023-07-30)
4+
5+
6+
### Bug Fixes
7+
8+
* Fix broken intra-doc-link. ([#262](https://github.com/AccessKit/accesskit/issues/262)) ([63c1715](https://github.com/AccessKit/accesskit/commit/63c17152d1eb8ae6ff19c2bc4a6756372bc490c2))
9+
310
## [0.11.0](https://github.com/AccessKit/accesskit/compare/accesskit-v0.10.1...accesskit-v0.11.0) (2023-03-29)
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.11.0"
3+
version = "0.11.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
@@ -8,6 +8,10 @@
88
* dependencies
99
* accesskit bumped from 0.10.1 to 0.11.0
1010

11+
* The following workspace dependencies were updated
12+
* dependencies
13+
* accesskit bumped from 0.11.0 to 0.11.1
14+
1115
## [0.15.0](https://github.com/AccessKit/accesskit/compare/accesskit_consumer-v0.14.2...accesskit_consumer-v0.15.0) (2023-03-30)
1216

1317

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.15.0"
3+
version = "0.15.1"
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.11.0", path = "../common" }
14+
accesskit = { version = "0.11.1", path = "../common" }
1515

platforms/macos/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
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.8.0](https://github.com/AccessKit/accesskit/compare/accesskit_macos-v0.7.1...accesskit_macos-v0.8.0) (2023-07-30)
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+
23+
24+
### Dependencies
25+
26+
* The following workspace dependencies were updated
27+
* dependencies
28+
* accesskit bumped from 0.11.0 to 0.11.1
29+
* accesskit_consumer bumped from 0.15.0 to 0.15.1
30+
1631
## [0.7.1](https://github.com/AccessKit/accesskit/compare/accesskit_macos-v0.7.0...accesskit_macos-v0.7.1) (2023-06-20)
1732

1833

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.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"
@@ -14,8 +14,8 @@ edition = "2021"
1414
default-target = "x86_64-apple-darwin"
1515

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@
1414
* accesskit bumped from 0.10.1 to 0.11.0
1515
* accesskit_consumer bumped from 0.14.1 to 0.14.2
1616

17+
* The following workspace dependencies were updated
18+
* dependencies
19+
* accesskit bumped from 0.11.0 to 0.11.1
20+
* accesskit_consumer bumped from 0.15.0 to 0.15.1
21+
1722
## [0.5.0](https://github.com/AccessKit/accesskit/compare/accesskit_unix-v0.4.0...accesskit_unix-v0.5.0) (2023-05-21)
1823

1924

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.5.0"
3+
version = "0.5.1"
44
authors = ["Arnold Loubriat <datatriny@gmail.com>"]
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.0", path = "../../common" }
20-
accesskit_consumer = { version = "0.15.0", path = "../../consumer" }
19+
accesskit = { version = "0.11.1", path = "../../common" }
20+
accesskit_consumer = { version = "0.15.1", 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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@
1818
* accesskit bumped from 0.10.1 to 0.11.0
1919
* accesskit_consumer bumped from 0.14.1 to 0.14.2
2020

21+
* The following workspace dependencies were updated
22+
* dependencies
23+
* accesskit bumped from 0.11.0 to 0.11.1
24+
* accesskit_consumer bumped from 0.15.0 to 0.15.1
25+
2126
## [0.14.0](https://github.com/AccessKit/accesskit/compare/accesskit_windows-v0.13.3...accesskit_windows-v0.14.0) (2023-03-30)
2227

2328

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.14.0"
3+
version = "0.14.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.11.0", path = "../../common" }
15-
accesskit_consumer = { version = "0.15.0", path = "../../consumer" }
14+
accesskit = { version = "0.11.1", path = "../../common" }
15+
accesskit_consumer = { version = "0.15.1", path = "../../consumer" }
1616
arrayvec = "0.7.1"
1717
once_cell = "1.13.0"
1818
paste = "1.0"

platforms/winit/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,13 @@
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 bumped from 0.11.0 to 0.11.1
61+
* accesskit_windows bumped from 0.14.0 to 0.14.1
62+
* accesskit_macos bumped from 0.7.1 to 0.8.0
63+
* accesskit_unix bumped from 0.5.0 to 0.5.1
64+
5865
## [0.14.0](https://github.com/AccessKit/accesskit/compare/accesskit_winit-v0.13.0...accesskit_winit-v0.14.0) (2023-05-21)
5966

6067

platforms/winit/Cargo.toml

Lines changed: 5 additions & 5 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"
@@ -16,17 +16,17 @@ async-io = ["accesskit_unix/async-io"]
1616
tokio = ["accesskit_unix/tokio"]
1717

1818
[dependencies]
19-
accesskit = { version = "0.11.0", path = "../../common" }
19+
accesskit = { version = "0.11.1", path = "../../common" }
2020
winit = { version = "0.28", default-features = false }
2121

2222
[target.'cfg(target_os = "windows")'.dependencies]
23-
accesskit_windows = { version = "0.14.0", path = "../windows" }
23+
accesskit_windows = { version = "0.14.1", 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]
29-
accesskit_unix = { version = "0.5.0", path = "../unix", optional = true, default-features = false }
29+
accesskit_unix = { version = "0.5.1", path = "../unix", optional = true, default-features = false }
3030

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

0 commit comments

Comments
 (0)