Skip to content

Commit 39c2725

Browse files
authored
update analyzer across all packages, release packages with changes (#3537)
update analyzer across all packages, release packages with changes
1 parent 316ae9b commit 39c2725

File tree

26 files changed

+50
-37
lines changed

26 files changed

+50
-37
lines changed

_test/pkgs/provides_builder/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: provides_builder
22

33
environment:
4-
sdk: ">=2.12.0 <3.0.0"
4+
sdk: ">=2.12.0 <4.0.0"
55

66
dependencies:
77
build:

_test/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ name: _test
22
publish_to: none
33

44
environment:
5-
sdk: ">=2.15.0 <3.0.0"
5+
sdk: ">=2.15.0 <4.0.0"
66

77
dev_dependencies:
8-
analyzer: ">=1.0.0 <6.0.0"
8+
analyzer: any
99
build: any
1010
build_config: any
1111
build_modules: any

_test_common/lib/descriptors.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Future<d.FileDescriptor> pubspec(
2626
Iterable<String> currentIsolateDependencies = const [],
2727
Map<String, String> pathDependencies = const {},
2828
Map<String, String> versionDependencies = const {},
29-
String sdkEnvironment = '>=2.12.0 <3.0.0',
29+
String sdkEnvironment = '>=2.12.0 <4.0.0',
3030
}) async {
3131
var buffer = StringBuffer()
3232
..writeln('name: $name')

_test_common/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ publish_to: none
33
description: Test infra for writing build tests. Is not published.
44

55
environment:
6-
sdk: ">=2.12.0 <3.0.0"
6+
sdk: ">=2.12.0 <4.0.0"
77

88
dependencies:
99
build: any

build/CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
## 2.4.1-wip
1+
## 2.4.1
2+
3+
- Allow the latest analyzer (6.x.x).
24

35
## 2.4.0
46

build/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
name: build
2-
version: 2.4.1-wip
2+
version: 2.4.1
33
description: A package for authoring build_runner compatible code generators.
44
repository: https://github.com/dart-lang/build/tree/master/build
55

66
environment:
7-
sdk: ">=2.19.0 <3.0.0"
7+
sdk: ">=2.19.0 <4.0.0"
88

99
dependencies:
10-
analyzer: ">=1.5.0 <6.0.0"
10+
analyzer: ">=1.5.0 <7.0.0"
1111
async: ^2.5.0
1212
convert: ^3.0.0
1313
crypto: ^3.0.0

build_config/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: >-
55
repository: https://github.com/dart-lang/build/tree/master/build_config
66

77
environment:
8-
sdk: '>=2.14.0 <3.0.0'
8+
sdk: '>=2.14.0 <4.0.0'
99

1010
dependencies:
1111
checked_yaml: ^2.0.0

build_daemon/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: A daemon for running Dart builds.
44
repository: https://github.com/dart-lang/build/tree/master/build_daemon
55

66
environment:
7-
sdk: ">=2.19.0 <3.0.0"
7+
sdk: ">=2.19.0 <4.0.0"
88

99
dependencies:
1010
built_collection: ^5.0.0
@@ -20,7 +20,7 @@ dependencies:
2020
web_socket_channel: ^2.0.0
2121

2222
dev_dependencies:
23-
analyzer: '>=3.4.0 <6.0.0'
23+
analyzer: '>=3.4.0 <7.0.0'
2424
build_runner: ^2.0.0
2525
# TODO: untangle analyzer dependency
2626
built_value_generator: ^8.1.0

build_modules/CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
## 5.0.3-wip
1+
## 5.0.3
2+
3+
- Allow the latest analyzer (6.x.x).
24

35
## 5.0.2
46

build_modules/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
name: build_modules
2-
version: 5.0.3-wip
2+
version: 5.0.3
33
description: >-
44
Builders to analyze and split Dart code into individually compilable modules
55
based on imports.
66
repository: https://github.com/dart-lang/build/tree/master/build_modules
77

88
environment:
9-
sdk: '>=3.0.0-134.0.dev <3.2.0'
9+
sdk: '>=3.0.0 <3.2.0'
1010

1111
dependencies:
12-
analyzer: '>=5.1.0 <6.0.0'
12+
analyzer: '>=5.1.0 <7.0.0'
1313
async: ^2.5.0
1414
bazel_worker: ^1.0.0
1515
build: ^2.0.0

0 commit comments

Comments
 (0)