Skip to content

Commit df40bbf

Browse files
chore: release main (#144)
1 parent 455e6f7 commit df40bbf

File tree

10 files changed

+91
-16
lines changed

10 files changed

+91
-16
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.6.1","consumer":"0.6.1","platforms/windows":"0.6.1","platforms/winit":"0.3.2"}
1+
{"common":"0.7.0","consumer":"0.7.0","platforms/windows":"0.7.0","platforms/winit":"0.3.3"}

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

common/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# Changelog
22

3+
## [0.7.0](https://www.github.com/AccessKit/accesskit/compare/accesskit-v0.6.1...accesskit-v0.7.0) (2022-11-11)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* Text range support (#145)
9+
* Drop the `ignored` field and implement generic filtered tree traversal (#143)
10+
11+
### Features
12+
13+
* Text range support ([#145](https://www.github.com/AccessKit/accesskit/issues/145)) ([455e6f7](https://www.github.com/AccessKit/accesskit/commit/455e6f73bc058644d299c06eeeda9cc4cbe8844f))
14+
15+
16+
### Code Refactoring
17+
18+
* Drop the `ignored` field and implement generic filtered tree traversal ([#143](https://www.github.com/AccessKit/accesskit/issues/143)) ([a4befe6](https://www.github.com/AccessKit/accesskit/commit/a4befe6e8a5afbe4a52dfd09eb87fdf2078d6c1d))
19+
320
### [0.6.1](https://www.github.com/AccessKit/accesskit/compare/accesskit-v0.6.0...accesskit-v0.6.1) (2022-10-10)
421

522

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"
3-
version = "0.6.1"
3+
version = "0.7.0"
44
authors = ["Matt Campbell <mattcampbell@pobox.com>"]
55
license = "MIT/Apache-2.0"
66
description = "UI accessibility infrastructure across platforms"

consumer/CHANGELOG.md

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,29 @@
11
# Changelog
22

3+
## [0.7.0](https://www.github.com/AccessKit/accesskit/compare/accesskit_consumer-v0.6.1...accesskit_consumer-v0.7.0) (2022-11-11)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* Text range support (#145)
9+
* Drop the `ignored` field and implement generic filtered tree traversal (#143)
10+
11+
### Features
12+
13+
* Text range support ([#145](https://www.github.com/AccessKit/accesskit/issues/145)) ([455e6f7](https://www.github.com/AccessKit/accesskit/commit/455e6f73bc058644d299c06eeeda9cc4cbe8844f))
14+
15+
16+
### Code Refactoring
17+
18+
* Drop the `ignored` field and implement generic filtered tree traversal ([#143](https://www.github.com/AccessKit/accesskit/issues/143)) ([a4befe6](https://www.github.com/AccessKit/accesskit/commit/a4befe6e8a5afbe4a52dfd09eb87fdf2078d6c1d))
19+
20+
21+
### Dependencies
22+
23+
* The following workspace dependencies were updated
24+
* dependencies
25+
* accesskit bumped from 0.6.1 to 0.7.0
26+
327
### [0.6.1](https://www.github.com/AccessKit/accesskit/compare/accesskit_consumer-v0.6.0...accesskit_consumer-v0.6.1) (2022-10-10)
428

529

@@ -111,4 +135,4 @@
111135

112136
* The following workspace dependencies were updated
113137
* dependencies
114-
* accesskit bumped from 0.2.0 to 0.3.0
138+
* accesskit bumped from 0.2.0 to 0.3.0

consumer/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_consumer"
3-
version = "0.6.1"
3+
version = "0.7.0"
44
authors = ["Matt Campbell <mattcampbell@pobox.com>"]
55
license = "MIT/Apache-2.0"
66
description = "AccessKit consumer library (internal)"
@@ -11,6 +11,6 @@ readme = "README.md"
1111
edition = "2021"
1212

1313
[dependencies]
14-
accesskit = { version = "0.6.1", path = "../common" }
14+
accesskit = { version = "0.7.0", path = "../common" }
1515
im = "15.0.0"
1616
parking_lot = "0.11.2"

platforms/windows/CHANGELOG.md

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,30 @@
11
# Changelog
22

3+
## [0.7.0](https://www.github.com/AccessKit/accesskit/compare/accesskit_windows-v0.6.1...accesskit_windows-v0.7.0) (2022-11-11)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* Text range support (#145)
9+
* Drop the `ignored` field and implement generic filtered tree traversal (#143)
10+
11+
### Features
12+
13+
* Text range support ([#145](https://www.github.com/AccessKit/accesskit/issues/145)) ([455e6f7](https://www.github.com/AccessKit/accesskit/commit/455e6f73bc058644d299c06eeeda9cc4cbe8844f))
14+
15+
16+
### Code Refactoring
17+
18+
* Drop the `ignored` field and implement generic filtered tree traversal ([#143](https://www.github.com/AccessKit/accesskit/issues/143)) ([a4befe6](https://www.github.com/AccessKit/accesskit/commit/a4befe6e8a5afbe4a52dfd09eb87fdf2078d6c1d))
19+
20+
21+
### Dependencies
22+
23+
* The following workspace dependencies were updated
24+
* dependencies
25+
* accesskit bumped from 0.6.1 to 0.7.0
26+
* accesskit_consumer bumped from 0.6.1 to 0.7.0
27+
328
### [0.6.1](https://www.github.com/AccessKit/accesskit/compare/accesskit_windows-v0.6.0...accesskit_windows-v0.6.1) (2022-10-10)
429

530

@@ -135,4 +160,4 @@
135160
* The following workspace dependencies were updated
136161
* dependencies
137162
* accesskit bumped from 0.2.0 to 0.3.0
138-
* accesskit_consumer bumped from 0.2.0 to 0.3.0
163+
* accesskit_consumer bumped from 0.2.0 to 0.3.0

platforms/windows/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "accesskit_windows"
3-
version = "0.6.1"
3+
version = "0.7.0"
44
authors = ["Matt Campbell <mattcampbell@pobox.com>"]
55
license = "MIT/Apache-2.0"
66
description = "AccessKit UI accessibility infrastructure: Windows adapter"
@@ -11,8 +11,8 @@ readme = "README.md"
1111
edition = "2021"
1212

1313
[dependencies]
14-
accesskit = { version = "0.6.1", path = "../../common" }
15-
accesskit_consumer = { version = "0.6.1", path = "../../consumer" }
14+
accesskit = { version = "0.7.0", path = "../../common" }
15+
accesskit_consumer = { version = "0.7.0", path = "../../consumer" }
1616
arrayvec = "0.7.1"
1717
lazy-init = "0.5.0"
1818
parking_lot = "0.11.2"

platforms/winit/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
### [0.3.3](https://www.github.com/AccessKit/accesskit/compare/accesskit_winit-v0.3.2...accesskit_winit-v0.3.3) (2022-11-11)
4+
5+
6+
### Dependencies
7+
8+
* The following workspace dependencies were updated
9+
* dependencies
10+
* accesskit bumped from 0.6.1 to 0.7.0
11+
312
### [0.3.2](https://www.github.com/AccessKit/accesskit/compare/accesskit_winit-v0.3.1...accesskit_winit-v0.3.2) (2022-10-11)
413

514

platforms/winit/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "accesskit_winit"
3-
version = "0.3.2"
3+
version = "0.3.3"
44
authors = ["Matt Campbell <mattcampbell@pobox.com>"]
55
license = "Apache-2.0"
66
description = "AccessKit UI accessibility infrastructure: winit adapter"
@@ -11,12 +11,12 @@ readme = "README.md"
1111
edition = "2021"
1212

1313
[dependencies]
14-
accesskit = { version = "0.6.1", path = "../../common" }
14+
accesskit = { version = "0.7.0", path = "../../common" }
1515
parking_lot = "0.11.2"
1616
winit = "0.27.3"
1717

1818
[target.'cfg(target_os = "windows")'.dependencies]
19-
accesskit_windows = { version = "0.6.1", path = "../windows" }
19+
accesskit_windows = { version = "0.7.0", path = "../windows" }
2020

2121
[target.'cfg(target_os = "windows")'.dependencies.windows]
2222
version = "0.40.0"

0 commit comments

Comments
 (0)