Skip to content

Commit 405d578

Browse files
chore: release main (#481)
1 parent f4f0bfb commit 405d578

File tree

16 files changed

+103
-28
lines changed

16 files changed

+103
-28
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.17.0","consumer":"0.25.0","platforms/macos":"0.18.0","platforms/windows":"0.24.0","platforms/winit":"0.23.0","platforms/unix":"0.13.0","platforms/atspi-common":"0.10.0"}
1+
{"common":"0.17.1","consumer":"0.26.0","platforms/macos":"0.18.1","platforms/windows":"0.24.1","platforms/winit":"0.23.1","platforms/unix":"0.13.1","platforms/atspi-common":"0.10.1"}

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.

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.17.1](https://github.com/AccessKit/accesskit/compare/accesskit-v0.17.0...accesskit-v0.17.1) (2024-11-23)
4+
5+
6+
### Bug Fixes
7+
8+
* Fix some broken links in the documentation ([#484](https://github.com/AccessKit/accesskit/issues/484)) ([0a51225](https://github.com/AccessKit/accesskit/commit/0a5122561c6f6aca5cf802464220056d763040f8))
9+
310
## [0.17.0](https://github.com/AccessKit/accesskit/compare/accesskit-v0.16.3...accesskit-v0.17.0) (2024-10-31)
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.17.0"
3+
version = "0.17.1"
44
authors.workspace = true
55
license.workspace = true
66
description = "UI accessibility infrastructure across platforms"

consumer/CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,25 @@
2424
* dependencies
2525
* accesskit bumped from 0.16.2 to 0.16.3
2626

27+
## [0.26.0](https://github.com/AccessKit/accesskit/compare/accesskit_consumer-v0.25.0...accesskit_consumer-v0.26.0) (2024-11-23)
28+
29+
30+
### Features
31+
32+
* Make the consumer crate no-std ([#471](https://github.com/AccessKit/accesskit/issues/471)) ([f25d03a](https://github.com/AccessKit/accesskit/commit/f25d03ad81736017a29ce0f5ed1b387047534d2d))
33+
34+
35+
### Bug Fixes
36+
37+
* Avoid reallocations when processing tree updates ([#482](https://github.com/AccessKit/accesskit/issues/482)) ([dcb17bc](https://github.com/AccessKit/accesskit/commit/dcb17bc1e69eccc2fea6af6a6b61f71c9e73a0b9))
38+
39+
40+
### Dependencies
41+
42+
* The following workspace dependencies were updated
43+
* dependencies
44+
* accesskit bumped from 0.17.0 to 0.17.1
45+
2746
## [0.25.0](https://github.com/AccessKit/accesskit/compare/accesskit_consumer-v0.24.3...accesskit_consumer-v0.25.0) (2024-10-31)
2847

2948

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.25.0"
3+
version = "0.26.0"
44
authors.workspace = true
55
license.workspace = true
66
description = "AccessKit consumer library (internal)"
@@ -12,6 +12,6 @@ edition.workspace = true
1212
rust-version.workspace = true
1313

1414
[dependencies]
15-
accesskit = { version = "0.17.0", path = "../common" }
15+
accesskit = { version = "0.17.1", path = "../common" }
1616
hashbrown = { version = "0.15", default-features = false, features = ["default-hasher"] }
1717
immutable-chunkmap = "2.0.6"

platforms/atspi-common/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@
1919
* accesskit bumped from 0.16.2 to 0.16.3
2020
* accesskit_consumer bumped from 0.24.2 to 0.24.3
2121

22+
* The following workspace dependencies were updated
23+
* dependencies
24+
* accesskit bumped from 0.17.0 to 0.17.1
25+
* accesskit_consumer bumped from 0.25.0 to 0.26.0
26+
2227
## [0.10.0](https://github.com/AccessKit/accesskit/compare/accesskit_atspi_common-v0.9.3...accesskit_atspi_common-v0.10.0) (2024-10-31)
2328

2429

platforms/atspi-common/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_atspi_common"
3-
version = "0.10.0"
3+
version = "0.10.1"
44
authors.workspace = true
55
license.workspace = true
66
description = "AccessKit UI accessibility infrastructure: core AT-SPI translation layer"
@@ -15,8 +15,8 @@ rust-version.workspace = true
1515
simplified-api = []
1616

1717
[dependencies]
18-
accesskit = { version = "0.17.0", path = "../../common" }
19-
accesskit_consumer = { version = "0.25.0", path = "../../consumer" }
18+
accesskit = { version = "0.17.1", path = "../../common" }
19+
accesskit_consumer = { version = "0.26.0", path = "../../consumer" }
2020
atspi-common = { version = "0.6", default-features = false }
2121
serde = "1.0"
2222
thiserror = "1.0"

platforms/macos/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,22 @@
3737
* accesskit bumped from 0.16.2 to 0.16.3
3838
* accesskit_consumer bumped from 0.24.2 to 0.24.3
3939

40+
## [0.18.1](https://github.com/AccessKit/accesskit/compare/accesskit_macos-v0.18.0...accesskit_macos-v0.18.1) (2024-11-23)
41+
42+
43+
### Bug Fixes
44+
45+
* Add sub roles to MacOS adapter ([#480](https://github.com/AccessKit/accesskit/issues/480)) ([40ad828](https://github.com/AccessKit/accesskit/commit/40ad828a8f95c94f3079310d95c94ab7b16e0887))
46+
* Optimize use of hash tables in platform adapters ([#485](https://github.com/AccessKit/accesskit/issues/485)) ([f4f0bfb](https://github.com/AccessKit/accesskit/commit/f4f0bfbf21b8e22e80ab07deb432f9e7e16469ab))
47+
48+
49+
### Dependencies
50+
51+
* The following workspace dependencies were updated
52+
* dependencies
53+
* accesskit bumped from 0.17.0 to 0.17.1
54+
* accesskit_consumer bumped from 0.25.0 to 0.26.0
55+
4056
## [0.18.0](https://github.com/AccessKit/accesskit/compare/accesskit_macos-v0.17.4...accesskit_macos-v0.18.0) (2024-10-31)
4157

4258

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.18.0"
3+
version = "0.18.1"
44
authors.workspace = true
55
license.workspace = true
66
description = "AccessKit UI accessibility infrastructure: macOS adapter"
@@ -15,8 +15,8 @@ rust-version.workspace = true
1515
default-target = "x86_64-apple-darwin"
1616

1717
[dependencies]
18-
accesskit = { version = "0.17.0", path = "../../common" }
19-
accesskit_consumer = { version = "0.25.0", path = "../../consumer" }
18+
accesskit = { version = "0.17.1", path = "../../common" }
19+
accesskit_consumer = { version = "0.26.0", path = "../../consumer" }
2020
hashbrown = { version = "0.15", default-features = false, features = ["default-hasher"] }
2121
objc2 = "0.5.1"
2222
objc2-foundation = { version = "0.2.0", features = [

platforms/unix/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,11 @@
6363
* accesskit bumped from 0.16.2 to 0.16.3
6464
* accesskit_atspi_common bumped from 0.9.2 to 0.9.3
6565

66+
* The following workspace dependencies were updated
67+
* dependencies
68+
* accesskit bumped from 0.17.0 to 0.17.1
69+
* accesskit_atspi_common bumped from 0.10.0 to 0.10.1
70+
6671
## [0.13.0](https://github.com/AccessKit/accesskit/compare/accesskit_unix-v0.12.3...accesskit_unix-v0.13.0) (2024-10-31)
6772

6873

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.13.0"
3+
version = "0.13.1"
44
authors.workspace = true
55
license.workspace = true
66
description = "AccessKit UI accessibility infrastructure: Linux adapter"
@@ -17,8 +17,8 @@ async-io = ["dep:async-channel", "dep:async-executor", "dep:async-task", "dep:fu
1717
tokio = ["dep:tokio", "dep:tokio-stream", "atspi/tokio", "zbus/tokio"]
1818

1919
[dependencies]
20-
accesskit = { version = "0.17.0", path = "../../common" }
21-
accesskit_atspi_common = { version = "0.10.0", path = "../atspi-common" }
20+
accesskit = { version = "0.17.1", path = "../../common" }
21+
accesskit_atspi_common = { version = "0.10.1", path = "../atspi-common" }
2222
atspi = { version = "0.22", default-features = false }
2323
futures-lite = "2.3"
2424
serde = "1.0"

platforms/windows/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,22 @@
3838
* accesskit bumped from 0.16.2 to 0.16.3
3939
* accesskit_consumer bumped from 0.24.2 to 0.24.3
4040

41+
## [0.24.1](https://github.com/AccessKit/accesskit/compare/accesskit_windows-v0.24.0...accesskit_windows-v0.24.1) (2024-11-23)
42+
43+
44+
### Bug Fixes
45+
46+
* Optimize use of hash tables in platform adapters ([#485](https://github.com/AccessKit/accesskit/issues/485)) ([f4f0bfb](https://github.com/AccessKit/accesskit/commit/f4f0bfbf21b8e22e80ab07deb432f9e7e16469ab))
47+
* Tell docs.rs to only build accesskit_windows on Windows ([#483](https://github.com/AccessKit/accesskit/issues/483)) ([1fead29](https://github.com/AccessKit/accesskit/commit/1fead296ed012f83afb482021051ccc1d4946167))
48+
49+
50+
### Dependencies
51+
52+
* The following workspace dependencies were updated
53+
* dependencies
54+
* accesskit bumped from 0.17.0 to 0.17.1
55+
* accesskit_consumer bumped from 0.25.0 to 0.26.0
56+
4157
## [0.24.0](https://github.com/AccessKit/accesskit/compare/accesskit_windows-v0.23.2...accesskit_windows-v0.24.0) (2024-10-31)
4258

4359

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.24.0"
3+
version = "0.24.1"
44
authors.workspace = true
55
license.workspace = true
66
description = "AccessKit UI accessibility infrastructure: Windows adapter"
@@ -16,8 +16,8 @@ default-target = "x86_64-pc-windows-msvc"
1616
targets = []
1717

1818
[dependencies]
19-
accesskit = { version = "0.17.0", path = "../../common" }
20-
accesskit_consumer = { version = "0.25.0", path = "../../consumer" }
19+
accesskit = { version = "0.17.1", path = "../../common" }
20+
accesskit_consumer = { version = "0.26.0", path = "../../consumer" }
2121
hashbrown = { version = "0.15", default-features = false, features = ["default-hasher"] }
2222
paste = "1.0"
2323
static_assertions = "1.1.0"

platforms/winit/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,13 @@
140140
* dependencies
141141
* accesskit_macos bumped from 0.17.3 to 0.17.4
142142

143+
* The following workspace dependencies were updated
144+
* dependencies
145+
* accesskit bumped from 0.17.0 to 0.17.1
146+
* accesskit_windows bumped from 0.24.0 to 0.24.1
147+
* accesskit_macos bumped from 0.18.0 to 0.18.1
148+
* accesskit_unix bumped from 0.13.0 to 0.13.1
149+
143150
## [0.23.0](https://github.com/AccessKit/accesskit/compare/accesskit_winit-v0.22.4...accesskit_winit-v0.23.0) (2024-10-31)
144151

145152

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.23.0"
3+
version = "0.23.1"
44
authors.workspace = true
55
license = "Apache-2.0"
66
description = "AccessKit UI accessibility infrastructure: winit adapter"
@@ -22,19 +22,19 @@ async-io = ["accesskit_unix/async-io"]
2222
tokio = ["accesskit_unix/tokio"]
2323

2424
[dependencies]
25-
accesskit = { version = "0.17.0", path = "../../common" }
25+
accesskit = { version = "0.17.1", path = "../../common" }
2626
winit = { version = "0.30", default-features = false }
2727
rwh_05 = { package = "raw-window-handle", version = "0.5", features = ["std"], optional = true }
2828
rwh_06 = { package = "raw-window-handle", version = "0.6.2", features = ["std"], optional = true }
2929

3030
[target.'cfg(target_os = "windows")'.dependencies]
31-
accesskit_windows = { version = "0.24.0", path = "../windows" }
31+
accesskit_windows = { version = "0.24.1", path = "../windows" }
3232

3333
[target.'cfg(target_os = "macos")'.dependencies]
34-
accesskit_macos = { version = "0.18.0", path = "../macos" }
34+
accesskit_macos = { version = "0.18.1", path = "../macos" }
3535

3636
[target.'cfg(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd", target_os = "openbsd", target_os = "netbsd"))'.dependencies]
37-
accesskit_unix = { version = "0.13.0", path = "../unix", optional = true, default-features = false }
37+
accesskit_unix = { version = "0.13.1", path = "../unix", optional = true, default-features = false }
3838

3939
[dev-dependencies.winit]
4040
version = "0.30"

0 commit comments

Comments
 (0)