Skip to content

Commit acd7810

Browse files
authored
chore: release main (#433)
1 parent 50341f1 commit acd7810

File tree

12 files changed

+43
-15
lines changed

12 files changed

+43
-15
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.15.0","consumer":"0.23.0","platforms/macos":"0.16.0","platforms/windows":"0.21.0","platforms/winit":"0.21.0","platforms/unix":"0.11.0","bindings/c":"0.11.0","bindings/python":"0.4.0","platforms/atspi-common":"0.7.0"}
1+
{"common":"0.15.0","consumer":"0.23.0","platforms/macos":"0.16.0","platforms/windows":"0.21.0","platforms/winit":"0.21.1","platforms/unix":"0.11.1","bindings/c":"0.11.1","bindings/python":"0.4.1","platforms/atspi-common":"0.8.0"}

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.

bindings/c/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,10 @@
7272
* accesskit_macos bumped from 0.14.0 to 0.15.0
7373
* accesskit_unix bumped from 0.10.0 to 0.10.1
7474

75+
* The following workspace dependencies were updated
76+
* dependencies
77+
* accesskit_unix bumped from 0.11.0 to 0.11.1
78+
7579
## [0.11.0](https://github.com/AccessKit/accesskit/compare/accesskit_c-v0.10.3...accesskit_c-v0.11.0) (2024-06-09)
7680

7781

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.11.0"
3+
version = "0.11.1"
44
authors.workspace = true
55
license.workspace = true
66
publish = false
@@ -25,4 +25,4 @@ accesskit_windows = { version = "0.21.0", path = "../../platforms/windows" }
2525
accesskit_macos = { version = "0.16.0", path = "../../platforms/macos" }
2626

2727
[target.'cfg(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd", target_os = "openbsd", target_os = "netbsd"))'.dependencies]
28-
accesskit_unix = { version = "0.11.0", path = "../../platforms/unix" }
28+
accesskit_unix = { version = "0.11.1", path = "../../platforms/unix" }

bindings/python/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,10 @@
5050
* accesskit_macos bumped from 0.14.0 to 0.15.0
5151
* accesskit_unix bumped from 0.10.0 to 0.10.1
5252

53+
* The following workspace dependencies were updated
54+
* dependencies
55+
* accesskit_unix bumped from 0.11.0 to 0.11.1
56+
5357
## [0.4.0](https://github.com/AccessKit/accesskit/compare/accesskit_python-v0.3.4...accesskit_python-v0.4.0) (2024-06-09)
5458

5559

bindings/python/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_python"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
authors.workspace = true
55
license.workspace = true
66
description = "Python bindings to the AccessKit library"
@@ -27,4 +27,4 @@ accesskit_windows = { version = "0.21.0", path = "../../platforms/windows" }
2727
accesskit_macos = { version = "0.16.0", path = "../../platforms/macos" }
2828

2929
[target.'cfg(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd", target_os = "openbsd", target_os = "netbsd"))'.dependencies]
30-
accesskit_unix = { version = "0.11.0", path = "../../platforms/unix" }
30+
accesskit_unix = { version = "0.11.1", path = "../../platforms/unix" }

platforms/atspi-common/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,18 @@
99
* dependencies
1010
* accesskit_consumer bumped from 0.19.0 to 0.19.1
1111

12+
## [0.8.0](https://github.com/AccessKit/accesskit/compare/accesskit_atspi_common-v0.7.0...accesskit_atspi_common-v0.8.0) (2024-06-15)
13+
14+
15+
### Features
16+
17+
* Feature-gate the `accesskit_atspi_common::simplified` module ([#430](https://github.com/AccessKit/accesskit/issues/430)) ([50341f1](https://github.com/AccessKit/accesskit/commit/50341f10cf32ef16c904d54725f717a585d21043))
18+
19+
20+
### Bug Fixes
21+
22+
* Avoid unnecessary repeated checks for text changes ([#432](https://github.com/AccessKit/accesskit/issues/432)) ([0e89671](https://github.com/AccessKit/accesskit/commit/0e89671fc0cf831d2c86a2cacf0195e247560753))
23+
1224
## [0.7.0](https://github.com/AccessKit/accesskit/compare/accesskit_atspi_common-v0.6.0...accesskit_atspi_common-v0.7.0) (2024-06-09)
1325

1426

platforms/atspi-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_atspi_common"
3-
version = "0.7.0"
3+
version = "0.8.0"
44
authors.workspace = true
55
license.workspace = true
66
description = "AccessKit UI accessibility infrastructure: core AT-SPI translation layer"

platforms/unix/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,10 @@
5454
* dependencies
5555
* accesskit_atspi_common bumped from 0.5.0 to 0.6.0
5656

57+
* The following workspace dependencies were updated
58+
* dependencies
59+
* accesskit_atspi_common bumped from 0.7.0 to 0.8.0
60+
5761
## [0.11.0](https://github.com/AccessKit/accesskit/compare/accesskit_unix-v0.10.1...accesskit_unix-v0.11.0) (2024-06-09)
5862

5963

platforms/unix/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_unix"
3-
version = "0.11.0"
3+
version = "0.11.1"
44
authors.workspace = true
55
license.workspace = true
66
description = "AccessKit UI accessibility infrastructure: Linux adapter"
@@ -18,7 +18,7 @@ tokio = ["dep:tokio", "dep:tokio-stream", "atspi/tokio", "zbus/tokio"]
1818

1919
[dependencies]
2020
accesskit = { version = "0.15.0", path = "../../common" }
21-
accesskit_atspi_common = { version = "0.7.0", path = "../atspi-common" }
21+
accesskit_atspi_common = { version = "0.8.0", path = "../atspi-common" }
2222
atspi = { version = "0.19", default-features = false }
2323
futures-lite = "1.13"
2424
serde = "1.0"

platforms/winit/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,10 @@
125125
* accesskit_macos bumped from 0.14.0 to 0.15.0
126126
* accesskit_unix bumped from 0.10.0 to 0.10.1
127127

128+
* The following workspace dependencies were updated
129+
* dependencies
130+
* accesskit_unix bumped from 0.11.0 to 0.11.1
131+
128132
## [0.21.0](https://github.com/AccessKit/accesskit/compare/accesskit_winit-v0.20.4...accesskit_winit-v0.21.0) (2024-06-09)
129133

130134

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.21.0"
3+
version = "0.21.1"
44
authors.workspace = true
55
license = "Apache-2.0"
66
description = "AccessKit UI accessibility infrastructure: winit adapter"
@@ -34,7 +34,7 @@ accesskit_windows = { version = "0.21.0", path = "../windows" }
3434
accesskit_macos = { version = "0.16.0", 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.11.0", path = "../unix", optional = true, default-features = false }
37+
accesskit_unix = { version = "0.11.1", path = "../unix", optional = true, default-features = false }
3838

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

0 commit comments

Comments
 (0)