Skip to content

Commit

Permalink
chore: release main (#133)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Oct 9, 2022
1 parent 765ab74 commit 1318d69
Show file tree
Hide file tree
Showing 10 changed files with 110 additions and 17 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.5.1","consumer":"0.5.1","platforms/windows":"0.5.1","platforms/winit":"0.2.1"}
{"common":"0.6.0","consumer":"0.6.0","platforms/windows":"0.6.0","platforms/winit":"0.3.0"}
8 changes: 4 additions & 4 deletions Cargo.lock

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

18 changes: 18 additions & 0 deletions common/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Changelog

## [0.6.0](https://www.github.com/AccessKit/accesskit/compare/accesskit-v0.5.1...accesskit-v0.6.0) (2022-10-09)


### ⚠ BREAKING CHANGES

* Wrap `TreeUpdate` nodes in `Arc` (#135)
* Store node ID in `TreeUpdate`, not `accesskit::Node` (#132)

### Bug Fixes

* Don't try to optimize tree updates with unchanged nodes ([#138](https://www.github.com/AccessKit/accesskit/issues/138)) ([7721719](https://www.github.com/AccessKit/accesskit/commit/7721719fb0ab90bf41cc30dd0469c7de90228fe9))


### Code Refactoring

* Store node ID in `TreeUpdate`, not `accesskit::Node` ([#132](https://www.github.com/AccessKit/accesskit/issues/132)) ([0bb86dd](https://www.github.com/AccessKit/accesskit/commit/0bb86ddb298cb5a253a91f07be0bad8b84b2fda3))
* Wrap `TreeUpdate` nodes in `Arc` ([#135](https://www.github.com/AccessKit/accesskit/issues/135)) ([907bc18](https://www.github.com/AccessKit/accesskit/commit/907bc1820b80d95833b6c5c3acaa2a8a4e93a6c2))

### [0.5.1](https://www.github.com/AccessKit/accesskit/compare/accesskit-v0.5.0...accesskit-v0.5.1) (2022-10-03)


Expand Down
2 changes: 1 addition & 1 deletion common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "accesskit"
version = "0.5.1"
version = "0.6.0"
authors = ["Matt Campbell <[email protected]>"]
license = "MIT/Apache-2.0"
description = "UI accessibility infrastructure across platforms"
Expand Down
32 changes: 31 additions & 1 deletion consumer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,35 @@
# Changelog

## [0.6.0](https://www.github.com/AccessKit/accesskit/compare/accesskit_consumer-v0.5.1...accesskit_consumer-v0.6.0) (2022-10-09)


### ⚠ BREAKING CHANGES

* **consumer:** Optimize tree access and change handling (#134)
* Wrap `TreeUpdate` nodes in `Arc` (#135)
* **consumer:** Make `Node::data` private to the crate (#137)
* Store node ID in `TreeUpdate`, not `accesskit::Node` (#132)

### Bug Fixes

* **consumer:** Drop printing of detached nodes before panic ([#136](https://www.github.com/AccessKit/accesskit/issues/136)) ([2f20477](https://www.github.com/AccessKit/accesskit/commit/2f204772a97d4e21205609f31f3e84bc878554cd))
* Don't try to optimize tree updates with unchanged nodes ([#138](https://www.github.com/AccessKit/accesskit/issues/138)) ([7721719](https://www.github.com/AccessKit/accesskit/commit/7721719fb0ab90bf41cc30dd0469c7de90228fe9))


### Code Refactoring

* **consumer:** Make `Node::data` private to the crate ([#137](https://www.github.com/AccessKit/accesskit/issues/137)) ([adb372d](https://www.github.com/AccessKit/accesskit/commit/adb372dda78d183c7189966e3bbc2d3780070513))
* **consumer:** Optimize tree access and change handling ([#134](https://www.github.com/AccessKit/accesskit/issues/134)) ([765ab74](https://www.github.com/AccessKit/accesskit/commit/765ab74efcf10a3b3871dc901d28f3cf1ff6020c))
* Store node ID in `TreeUpdate`, not `accesskit::Node` ([#132](https://www.github.com/AccessKit/accesskit/issues/132)) ([0bb86dd](https://www.github.com/AccessKit/accesskit/commit/0bb86ddb298cb5a253a91f07be0bad8b84b2fda3))
* Wrap `TreeUpdate` nodes in `Arc` ([#135](https://www.github.com/AccessKit/accesskit/issues/135)) ([907bc18](https://www.github.com/AccessKit/accesskit/commit/907bc1820b80d95833b6c5c3acaa2a8a4e93a6c2))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* accesskit bumped from 0.5.1 to 0.6.0

### [0.5.1](https://www.github.com/AccessKit/accesskit/compare/accesskit_consumer-v0.5.0...accesskit_consumer-v0.5.1) (2022-10-03)


Expand Down Expand Up @@ -72,4 +102,4 @@

* The following workspace dependencies were updated
* dependencies
* accesskit bumped from 0.2.0 to 0.3.0
* accesskit bumped from 0.2.0 to 0.3.0
4 changes: 2 additions & 2 deletions consumer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "accesskit_consumer"
version = "0.5.1"
version = "0.6.0"
authors = ["Matt Campbell <[email protected]>"]
license = "MIT/Apache-2.0"
description = "AccessKit consumer library (internal)"
Expand All @@ -11,6 +11,6 @@ readme = "README.md"
edition = "2021"

[dependencies]
accesskit = { version = "0.5.1", path = "../common" }
accesskit = { version = "0.6.0", path = "../common" }
im = "15.0.0"
parking_lot = "0.11.2"
27 changes: 26 additions & 1 deletion platforms/windows/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# Changelog

## [0.6.0](https://www.github.com/AccessKit/accesskit/compare/accesskit_windows-v0.5.1...accesskit_windows-v0.6.0) (2022-10-09)


### ⚠ BREAKING CHANGES

* **consumer:** Optimize tree access and change handling (#134)
* Wrap `TreeUpdate` nodes in `Arc` (#135)
* **consumer:** Make `Node::data` private to the crate (#137)
* Store node ID in `TreeUpdate`, not `accesskit::Node` (#132)

### Code Refactoring

* **consumer:** Make `Node::data` private to the crate ([#137](https://www.github.com/AccessKit/accesskit/issues/137)) ([adb372d](https://www.github.com/AccessKit/accesskit/commit/adb372dda78d183c7189966e3bbc2d3780070513))
* **consumer:** Optimize tree access and change handling ([#134](https://www.github.com/AccessKit/accesskit/issues/134)) ([765ab74](https://www.github.com/AccessKit/accesskit/commit/765ab74efcf10a3b3871dc901d28f3cf1ff6020c))
* Store node ID in `TreeUpdate`, not `accesskit::Node` ([#132](https://www.github.com/AccessKit/accesskit/issues/132)) ([0bb86dd](https://www.github.com/AccessKit/accesskit/commit/0bb86ddb298cb5a253a91f07be0bad8b84b2fda3))
* Wrap `TreeUpdate` nodes in `Arc` ([#135](https://www.github.com/AccessKit/accesskit/issues/135)) ([907bc18](https://www.github.com/AccessKit/accesskit/commit/907bc1820b80d95833b6c5c3acaa2a8a4e93a6c2))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* accesskit bumped from 0.5.1 to 0.6.0
* accesskit_consumer bumped from 0.5.1 to 0.6.0

### [0.5.1](https://www.github.com/AccessKit/accesskit/compare/accesskit_windows-v0.5.0...accesskit_windows-v0.5.1) (2022-10-03)


Expand Down Expand Up @@ -100,4 +125,4 @@
* The following workspace dependencies were updated
* dependencies
* accesskit bumped from 0.2.0 to 0.3.0
* accesskit_consumer bumped from 0.2.0 to 0.3.0
* accesskit_consumer bumped from 0.2.0 to 0.3.0
6 changes: 3 additions & 3 deletions platforms/windows/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "accesskit_windows"
version = "0.5.1"
version = "0.6.0"
authors = ["Matt Campbell <[email protected]>"]
license = "MIT/Apache-2.0"
description = "AccessKit UI accessibility infrastructure: Windows adapter"
Expand All @@ -11,8 +11,8 @@ readme = "README.md"
edition = "2021"

[dependencies]
accesskit = { version = "0.5.1", path = "../../common" }
accesskit_consumer = { version = "0.5.1", path = "../../consumer" }
accesskit = { version = "0.6.0", path = "../../common" }
accesskit_consumer = { version = "0.6.0", path = "../../consumer" }
arrayvec = "0.7.1"
lazy-init = "0.5.0"
paste = "1.0"
Expand Down
22 changes: 21 additions & 1 deletion platforms/winit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# Changelog

## [0.3.0](https://www.github.com/AccessKit/accesskit/compare/accesskit_winit-v0.2.1...accesskit_winit-v0.3.0) (2022-10-09)


### ⚠ BREAKING CHANGES

* Wrap `TreeUpdate` nodes in `Arc` (#135)
* Store node ID in `TreeUpdate`, not `accesskit::Node` (#132)

### Code Refactoring

* Store node ID in `TreeUpdate`, not `accesskit::Node` ([#132](https://www.github.com/AccessKit/accesskit/issues/132)) ([0bb86dd](https://www.github.com/AccessKit/accesskit/commit/0bb86ddb298cb5a253a91f07be0bad8b84b2fda3))
* Wrap `TreeUpdate` nodes in `Arc` ([#135](https://www.github.com/AccessKit/accesskit/issues/135)) ([907bc18](https://www.github.com/AccessKit/accesskit/commit/907bc1820b80d95833b6c5c3acaa2a8a4e93a6c2))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* accesskit bumped from 0.5.1 to 0.6.0

### [0.2.1](https://www.github.com/AccessKit/accesskit/compare/accesskit_winit-v0.2.0...accesskit_winit-v0.2.1) (2022-10-03)


Expand Down Expand Up @@ -48,4 +68,4 @@

* The following workspace dependencies were updated
* dependencies
* accesskit bumped from 0.3.0 to 0.4.0
* accesskit bumped from 0.3.0 to 0.4.0
6 changes: 3 additions & 3 deletions platforms/winit/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "accesskit_winit"
version = "0.2.1"
version = "0.3.0"
authors = ["Matt Campbell <[email protected]>"]
license = "Apache-2.0"
description = "AccessKit UI accessibility infrastructure: winit adapter"
Expand All @@ -11,12 +11,12 @@ readme = "README.md"
edition = "2021"

[dependencies]
accesskit = { version = "0.5.1", path = "../../common" }
accesskit = { version = "0.6.0", path = "../../common" }
parking_lot = "0.11.2"
winit = "0.27.3"

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

[target.'cfg(target_os = "windows")'.dependencies.windows]
version = "0.40.0"
Expand Down

0 comments on commit 1318d69

Please sign in to comment.