Skip to content

Commit

Permalink
chore: release main (#436)
Browse files Browse the repository at this point in the history
  • Loading branch information
mwcampbell authored Jun 29, 2024
1 parent 5751c81 commit 09e83e8
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -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"}
{"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"}
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,27 @@
* dependencies
* accesskit_unix bumped from 0.11.0 to 0.11.1

## [0.5.0](https://github.com/AccessKit/accesskit/compare/accesskit_python-v0.4.1...accesskit_python-v0.5.0) (2024-06-29)


### ⚠ BREAKING CHANGES

* Rename the `StaticText` role to `Label` ([#434](https://github.com/AccessKit/accesskit/issues/434))

### Code Refactoring

* Rename the `StaticText` role to `Label` ([#434](https://github.com/AccessKit/accesskit/issues/434)) ([7086bc0](https://github.com/AccessKit/accesskit/commit/7086bc0fad446d3ed4a0fd5eff641a1e75f6c599))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* accesskit bumped from 0.15.0 to 0.16.0
* accesskit_windows bumped from 0.21.0 to 0.22.0
* accesskit_macos bumped from 0.16.0 to 0.17.0
* accesskit_unix bumped from 0.11.1 to 0.12.0

## [0.4.0](https://github.com/AccessKit/accesskit/compare/accesskit_python-v0.3.4...accesskit_python-v0.4.0) (2024-06-09)


Expand Down
18 changes: 9 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "accesskit_python"
version = "0.4.1"
version = "0.5.0"
authors.workspace = true
license.workspace = true
description = "Python bindings to the AccessKit library"
Expand All @@ -17,14 +17,14 @@ doc = false
extension-module = ["pyo3/extension-module"]

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

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

[target.'cfg(target_os = "macos")'.dependencies]
accesskit_macos = { version = "0.16.0", path = "../../platforms/macos" }
accesskit_macos = { version = "0.17.0", path = "../../platforms/macos" }

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

0 comments on commit 09e83e8

Please sign in to comment.