Skip to content

Commit

Permalink
chore: release main
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Campbell committed Jul 30, 2023
1 parent 63c1715 commit 2d37b96
Show file tree
Hide file tree
Showing 16 changed files with 91 additions and 30 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.11.0","consumer":"0.15.0","platforms/macos":"0.7.1","platforms/windows":"0.14.0","platforms/winit":"0.14.1","platforms/unix":"0.5.0","bindings/c":"0.3.2"}
{"common":"0.11.1","consumer":"0.15.1","platforms/macos":"0.8.0","platforms/windows":"0.14.1","platforms/winit":"0.14.2","platforms/unix":"0.5.1","bindings/c":"0.4.0"}
14 changes: 7 additions & 7 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 bindings/c/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,24 @@
* dependencies
* accesskit_macos bumped from 0.7.0 to 0.7.1

## [0.4.0](https://github.com/AccessKit/accesskit/compare/accesskit_c-v0.3.2...accesskit_c-v0.4.0) (2023-07-30)


### Features

* Add CMake support to C bindings ([#247](https://github.com/AccessKit/accesskit/issues/247)) ([3f556c9](https://github.com/AccessKit/accesskit/commit/3f556c995e8c5eae6831a89b0173809134c1b4e7))
* Add window-based constructor to macOS subclassing adapter ([#253](https://github.com/AccessKit/accesskit/issues/253)) ([022ef04](https://github.com/AccessKit/accesskit/commit/022ef045b9f28262b738ee1ca29a4c7303061fb3))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* accesskit bumped from 0.11.0 to 0.11.1
* accesskit_windows bumped from 0.14.0 to 0.14.1
* accesskit_macos bumped from 0.7.1 to 0.8.0
* accesskit_unix bumped from 0.5.0 to 0.5.1

## [0.3.0](https://github.com/AccessKit/accesskit/compare/accesskit_c-v0.2.0...accesskit_c-v0.3.0) (2023-04-25)


Expand Down
10 changes: 5 additions & 5 deletions bindings/c/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "accesskit_c"
version = "0.3.2"
version = "0.4.0"
authors = ["Arnold Loubriat <[email protected]>"]
license = "MIT/Apache-2.0"
publish = false
Expand All @@ -14,14 +14,14 @@ crate-type = ["cdylib", "staticlib"]
cbindgen = []

[dependencies]
accesskit = { version = "0.11.0", path = "../../common" }
accesskit = { version = "0.11.1", path = "../../common" }
paste = "1.0"

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

[target.'cfg(target_os = "macos")'.dependencies]
accesskit_macos = { version = "0.7.1", path = "../../platforms/macos" }
accesskit_macos = { version = "0.8.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.5.0", path = "../../platforms/unix" }
accesskit_unix = { version = "0.5.1", path = "../../platforms/unix" }
7 changes: 7 additions & 0 deletions common/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.11.1](https://github.com/AccessKit/accesskit/compare/accesskit-v0.11.0...accesskit-v0.11.1) (2023-07-30)


### Bug Fixes

* Fix broken intra-doc-link. ([#262](https://github.com/AccessKit/accesskit/issues/262)) ([63c1715](https://github.com/AccessKit/accesskit/commit/63c17152d1eb8ae6ff19c2bc4a6756372bc490c2))

## [0.11.0](https://github.com/AccessKit/accesskit/compare/accesskit-v0.10.1...accesskit-v0.11.0) (2023-03-29)


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.11.0"
version = "0.11.1"
authors = ["Matt Campbell <[email protected]>"]
license = "MIT/Apache-2.0"
description = "UI accessibility infrastructure across platforms"
Expand Down
4 changes: 4 additions & 0 deletions consumer/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
* dependencies
* accesskit bumped from 0.10.1 to 0.11.0

* The following workspace dependencies were updated
* dependencies
* accesskit bumped from 0.11.0 to 0.11.1

## [0.15.0](https://github.com/AccessKit/accesskit/compare/accesskit_consumer-v0.14.2...accesskit_consumer-v0.15.0) (2023-03-30)


Expand Down
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.15.0"
version = "0.15.1"
authors = ["Matt Campbell <[email protected]>"]
license = "MIT/Apache-2.0"
description = "AccessKit consumer library (internal)"
Expand All @@ -11,5 +11,5 @@ readme = "README.md"
edition = "2021"

[dependencies]
accesskit = { version = "0.11.0", path = "../common" }
accesskit = { version = "0.11.1", path = "../common" }

15 changes: 15 additions & 0 deletions platforms/macos/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,21 @@
* accesskit bumped from 0.10.0 to 0.10.1
* accesskit_consumer bumped from 0.14.0 to 0.14.1

## [0.8.0](https://github.com/AccessKit/accesskit/compare/accesskit_macos-v0.7.1...accesskit_macos-v0.8.0) (2023-07-30)


### Features

* Add window-based constructor to macOS subclassing adapter ([#253](https://github.com/AccessKit/accesskit/issues/253)) ([022ef04](https://github.com/AccessKit/accesskit/commit/022ef045b9f28262b738ee1ca29a4c7303061fb3))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* accesskit bumped from 0.11.0 to 0.11.1
* accesskit_consumer bumped from 0.15.0 to 0.15.1

## [0.7.1](https://github.com/AccessKit/accesskit/compare/accesskit_macos-v0.7.0...accesskit_macos-v0.7.1) (2023-06-20)


Expand Down
6 changes: 3 additions & 3 deletions platforms/macos/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "accesskit_macos"
version = "0.7.1"
version = "0.8.0"
authors = ["Matt Campbell <[email protected]>"]
license = "MIT/Apache-2.0"
description = "AccessKit UI accessibility infrastructure: macOS adapter"
Expand All @@ -14,8 +14,8 @@ edition = "2021"
default-target = "x86_64-apple-darwin"

[dependencies]
accesskit = { version = "0.11.0", path = "../../common" }
accesskit_consumer = { version = "0.15.0", path = "../../consumer" }
accesskit = { version = "0.11.1", path = "../../common" }
accesskit_consumer = { version = "0.15.1", path = "../../consumer" }
objc2 = ">=0.3.0-beta.3, <0.3.0-beta.4" # Allow `0.3.0-beta.3.patch-leaks`
once_cell = "1.13.0"

5 changes: 5 additions & 0 deletions platforms/unix/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@
* accesskit bumped from 0.10.1 to 0.11.0
* accesskit_consumer bumped from 0.14.1 to 0.14.2

* The following workspace dependencies were updated
* dependencies
* accesskit bumped from 0.11.0 to 0.11.1
* accesskit_consumer bumped from 0.15.0 to 0.15.1

## [0.5.0](https://github.com/AccessKit/accesskit/compare/accesskit_unix-v0.4.0...accesskit_unix-v0.5.0) (2023-05-21)


Expand Down
6 changes: 3 additions & 3 deletions platforms/unix/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "accesskit_unix"
version = "0.5.0"
version = "0.5.1"
authors = ["Arnold Loubriat <[email protected]>"]
license = "MIT/Apache-2.0"
description = "AccessKit UI accessibility infrastructure: Linux adapter"
Expand All @@ -16,8 +16,8 @@ async-io = ["zbus/async-io"]
tokio = ["dep:once_cell", "dep:tokio", "zbus/tokio"]

[dependencies]
accesskit = { version = "0.11.0", path = "../../common" }
accesskit_consumer = { version = "0.15.0", path = "../../consumer" }
accesskit = { version = "0.11.1", path = "../../common" }
accesskit_consumer = { version = "0.15.1", path = "../../consumer" }
async-channel = "1.8.0"
atspi = { version = "0.10.1", default-features = false }
futures-lite = "1.12.0"
Expand Down
5 changes: 5 additions & 0 deletions platforms/windows/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@
* accesskit bumped from 0.10.1 to 0.11.0
* accesskit_consumer bumped from 0.14.1 to 0.14.2

* The following workspace dependencies were updated
* dependencies
* accesskit bumped from 0.11.0 to 0.11.1
* accesskit_consumer bumped from 0.15.0 to 0.15.1

## [0.14.0](https://github.com/AccessKit/accesskit/compare/accesskit_windows-v0.13.3...accesskit_windows-v0.14.0) (2023-03-30)


Expand Down
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.14.0"
version = "0.14.1"
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.11.0", path = "../../common" }
accesskit_consumer = { version = "0.15.0", path = "../../consumer" }
accesskit = { version = "0.11.1", path = "../../common" }
accesskit_consumer = { version = "0.15.1", path = "../../consumer" }
arrayvec = "0.7.1"
once_cell = "1.13.0"
paste = "1.0"
Expand Down
7 changes: 7 additions & 0 deletions platforms/winit/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,13 @@
* dependencies
* accesskit_macos bumped from 0.7.0 to 0.7.1

* The following workspace dependencies were updated
* dependencies
* accesskit bumped from 0.11.0 to 0.11.1
* accesskit_windows bumped from 0.14.0 to 0.14.1
* accesskit_macos bumped from 0.7.1 to 0.8.0
* accesskit_unix bumped from 0.5.0 to 0.5.1

## [0.14.0](https://github.com/AccessKit/accesskit/compare/accesskit_winit-v0.13.0...accesskit_winit-v0.14.0) (2023-05-21)


Expand Down
10 changes: 5 additions & 5 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.14.1"
version = "0.14.2"
authors = ["Matt Campbell <[email protected]>"]
license = "Apache-2.0"
description = "AccessKit UI accessibility infrastructure: winit adapter"
Expand All @@ -16,17 +16,17 @@ async-io = ["accesskit_unix/async-io"]
tokio = ["accesskit_unix/tokio"]

[dependencies]
accesskit = { version = "0.11.0", path = "../../common" }
accesskit = { version = "0.11.1", path = "../../common" }
winit = { version = "0.28", default-features = false }

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

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

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

[dev-dependencies]
winit = "0.28"

0 comments on commit 2d37b96

Please sign in to comment.