Skip to content

Commit 09e83e8

Browse files
authored
chore: release main (#436)
1 parent 5751c81 commit 09e83e8

File tree

4 files changed

+36
-15
lines changed

4 files changed

+36
-15
lines changed

.release-please-manifest.json

+1-1
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.1","platforms/unix":"0.11.1","bindings/c":"0.11.1","bindings/python":"0.4.1","platforms/atspi-common":"0.8.0"}
1+
{"common":"0.16.0","consumer":"0.24.0","platforms/macos":"0.17.0","platforms/windows":"0.22.0","platforms/winit":"0.22.0","platforms/unix":"0.12.0","bindings/c":"0.12.0","bindings/python":"0.5.0","platforms/atspi-common":"0.9.0"}

CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,27 @@
5454
* dependencies
5555
* accesskit_unix bumped from 0.11.0 to 0.11.1
5656

57+
## [0.5.0](https://github.com/AccessKit/accesskit/compare/accesskit_python-v0.4.1...accesskit_python-v0.5.0) (2024-06-29)
58+
59+
60+
### ⚠ BREAKING CHANGES
61+
62+
* Rename the `StaticText` role to `Label` ([#434](https://github.com/AccessKit/accesskit/issues/434))
63+
64+
### Code Refactoring
65+
66+
* Rename the `StaticText` role to `Label` ([#434](https://github.com/AccessKit/accesskit/issues/434)) ([7086bc0](https://github.com/AccessKit/accesskit/commit/7086bc0fad446d3ed4a0fd5eff641a1e75f6c599))
67+
68+
69+
### Dependencies
70+
71+
* The following workspace dependencies were updated
72+
* dependencies
73+
* accesskit bumped from 0.15.0 to 0.16.0
74+
* accesskit_windows bumped from 0.21.0 to 0.22.0
75+
* accesskit_macos bumped from 0.16.0 to 0.17.0
76+
* accesskit_unix bumped from 0.11.1 to 0.12.0
77+
5778
## [0.4.0](https://github.com/AccessKit/accesskit/compare/accesskit_python-v0.3.4...accesskit_python-v0.4.0) (2024-06-09)
5879

5980

Cargo.lock

+9-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "accesskit_python"
3-
version = "0.4.1"
3+
version = "0.5.0"
44
authors.workspace = true
55
license.workspace = true
66
description = "Python bindings to the AccessKit library"
@@ -17,14 +17,14 @@ doc = false
1717
extension-module = ["pyo3/extension-module"]
1818

1919
[dependencies]
20-
accesskit = { version = "0.15.0", path = "../../common", features = ["pyo3"] }
20+
accesskit = { version = "0.16.0", path = "../../common", features = ["pyo3"] }
2121
pyo3 = { version = "0.20", features = ["abi3-py38", "multiple-pymethods"] }
2222

2323
[target.'cfg(target_os = "windows")'.dependencies]
24-
accesskit_windows = { version = "0.21.0", path = "../../platforms/windows" }
24+
accesskit_windows = { version = "0.22.0", path = "../../platforms/windows" }
2525

2626
[target.'cfg(target_os = "macos")'.dependencies]
27-
accesskit_macos = { version = "0.16.0", path = "../../platforms/macos" }
27+
accesskit_macos = { version = "0.17.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.1", path = "../../platforms/unix" }
30+
accesskit_unix = { version = "0.12.0", path = "../../platforms/unix" }

0 commit comments

Comments
 (0)