Skip to content

Commit db0c811

Browse files
authored
Allow analyzer major version 10 (#2584)
Prepare to publish.
1 parent f95c0f5 commit db0c811

File tree

6 files changed

+17
-11
lines changed

6 files changed

+17
-11
lines changed

pkgs/test/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
## 1.29.0-wip
1+
## 1.29.0
22

33
* Add `--coverage-package` flag, which filters the coverage report to specific
44
packages using RegExps.
55
* Require a function definition named `main` directly in a test suite and
66
provide a more direct error message than a failing compiler output.
77
* Suppress skip reason messages in the compact and failures-only reporters.
8+
* Allow `analyzer` major version 10.
89

910
## 1.28.0
1011

pkgs/test/pubspec.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: test
2-
version: 1.29.0-wip
2+
version: 1.29.0
33
description: >-
44
A full featured library for writing and running Dart tests across platforms.
55
repository: https://github.com/dart-lang/test/tree/master/pkgs/test
@@ -10,7 +10,7 @@ environment:
1010
sdk: ^3.7.0
1111

1212
dependencies:
13-
analyzer: '>=8.0.0 <10.0.0'
13+
analyzer: '>=8.0.0 <11.0.0'
1414
async: ^2.5.0
1515
boolean_selector: ^2.1.0
1616
collection: ^1.15.0
@@ -35,8 +35,8 @@ dependencies:
3535
stream_channel: ^2.1.0
3636

3737
# Use an exact version until the test_api and test_core package are stable.
38-
test_api: 0.7.8
39-
test_core: 0.6.15-wip
38+
test_api: 0.7.9
39+
test_core: 0.6.15
4040

4141
typed_data: ^1.3.0
4242
web_socket_channel: '>=2.0.0 <4.0.0'

pkgs/test_api/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.7.9
2+
3+
* Allow `analyzer` major version 10.
4+
15
## 0.7.8
26

37
* Add a zone function available from the test suite `main` that allows creating

pkgs/test_api/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: test_api
2-
version: 0.7.8
2+
version: 0.7.9
33
description: >-
44
The user facing API for structuring Dart tests and checking expectations.
55
repository: https://github.com/dart-lang/test/tree/master/pkgs/test_api
@@ -21,7 +21,7 @@ dependencies:
2121
term_glyph: ^1.2.0
2222

2323
dev_dependencies:
24-
analyzer: '>=8.0.0 <10.0.0'
24+
analyzer: '>=8.0.0 <11.0.0'
2525
fake_async: ^1.2.0
2626
glob: ^2.0.0
2727
graphs: ^2.0.0

pkgs/test_core/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 0.6.15-wip
1+
## 0.6.15
22

33
* Add `--coverage-package` flag, which filters the coverage report to specific
44
packages using RegExps.
@@ -11,6 +11,7 @@
1111
* Fix default coverage filter when running in a workspace package. Default
1212
filter now includes all the workspace's package.
1313
* Add support for reading test package version within pub workspaces.
14+
* Allow `analyzer` major version 10.
1415

1516
## 0.6.14
1617

pkgs/test_core/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: test_core
2-
version: 0.6.15-wip
2+
version: 0.6.15
33
description: A basic library for writing tests and running them on the VM.
44
repository: https://github.com/dart-lang/test/tree/master/pkgs/test_core
55
issue_tracker: https://github.com/dart-lang/test/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Atest
@@ -9,7 +9,7 @@ environment:
99
sdk: ^3.7.0
1010

1111
dependencies:
12-
analyzer: '>=8.0.0 <10.0.0'
12+
analyzer: '>=8.0.0 <11.0.0'
1313
args: ^2.0.0
1414
async: ^2.5.0
1515
boolean_selector: ^2.1.0
@@ -28,7 +28,7 @@ dependencies:
2828
stack_trace: ^1.10.0
2929
stream_channel: ^2.1.0
3030
# Use an exact version until the test_api package is stable.
31-
test_api: 0.7.8
31+
test_api: 0.7.9
3232
vm_service: '>=6.0.0 <16.0.0'
3333
yaml: ^3.0.0
3434

0 commit comments

Comments
 (0)