Skip to content

Commit 1c68e41

Browse files
jakemac53kevmoo
andauthored
allow analyzer version 3.0.0 (#1079)
* allow analyzer version 3.0.0 * remove override * tiny bump Co-authored-by: Kevin Moore <[email protected]>
1 parent 86b14a3 commit 1c68e41

File tree

3 files changed

+17
-24
lines changed

3 files changed

+17
-24
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# 2.2.1-dev
2+
23
* Require `package:analyzer` version `2.6.0`.
34
* Use `NamedType` instead of `TypeName`.
45

@@ -82,7 +83,7 @@
8283

8384
* Change the path used in error messages when reading from stdin from "<stdin>"
8485
to "stdin". The former crashes on Windows since it is not a valid Windows
85-
pathname. To get the old behavior, pass `--stdin-name=<stdin>`.
86+
pathname. To get the old behavior, pass `--stdin-name=<stdin>`.
8687

8788
# 1.3.5
8889

pubspec.lock

Lines changed: 10 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ packages:
77
name: _fe_analyzer_shared
88
url: "https://pub.dartlang.org"
99
source: hosted
10-
version: "29.0.0"
10+
version: "32.0.0"
1111
analyzer:
1212
dependency: "direct main"
1313
description:
1414
name: analyzer
1515
url: "https://pub.dartlang.org"
1616
source: hosted
17-
version: "2.6.0"
17+
version: "3.0.0"
1818
args:
1919
dependency: "direct main"
2020
description:
@@ -49,7 +49,7 @@ packages:
4949
name: cli_util
5050
url: "https://pub.dartlang.org"
5151
source: hosted
52-
version: "0.3.3"
52+
version: "0.3.5"
5353
collection:
5454
dependency: transitive
5555
description:
@@ -98,7 +98,7 @@ packages:
9898
name: glob
9999
url: "https://pub.dartlang.org"
100100
source: hosted
101-
version: "2.0.1"
101+
version: "2.0.2"
102102
grinder:
103103
dependency: "direct dev"
104104
description:
@@ -168,7 +168,7 @@ packages:
168168
name: mime
169169
url: "https://pub.dartlang.org"
170170
source: hosted
171-
version: "1.0.0"
171+
version: "1.0.1"
172172
node_preamble:
173173
dependency: transitive
174174
description:
@@ -190,13 +190,6 @@ packages:
190190
url: "https://pub.dartlang.org"
191191
source: hosted
192192
version: "1.8.0"
193-
pedantic:
194-
dependency: transitive
195-
description:
196-
name: pedantic
197-
url: "https://pub.dartlang.org"
198-
source: hosted
199-
version: "1.11.1"
200193
pool:
201194
dependency: transitive
202195
description:
@@ -294,21 +287,21 @@ packages:
294287
name: test
295288
url: "https://pub.dartlang.org"
296289
source: hosted
297-
version: "1.17.12"
290+
version: "1.20.0"
298291
test_api:
299292
dependency: transitive
300293
description:
301294
name: test_api
302295
url: "https://pub.dartlang.org"
303296
source: hosted
304-
version: "0.4.3"
297+
version: "0.4.9"
305298
test_core:
306299
dependency: transitive
307300
description:
308301
name: test_core
309302
url: "https://pub.dartlang.org"
310303
source: hosted
311-
version: "0.4.2"
304+
version: "0.4.10"
312305
test_descriptor:
313306
dependency: "direct dev"
314307
description:
@@ -336,14 +329,14 @@ packages:
336329
name: vm_service
337330
url: "https://pub.dartlang.org"
338331
source: hosted
339-
version: "7.3.0"
332+
version: "7.5.0"
340333
watcher:
341334
dependency: transitive
342335
description:
343336
name: watcher
344337
url: "https://pub.dartlang.org"
345338
source: hosted
346-
version: "1.0.0"
339+
version: "1.0.1"
347340
web_socket_channel:
348341
dependency: transitive
349342
description:

pubspec.yaml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,14 @@ description: >-
55
Opinionated, automatic Dart source code formatter.
66
Provides an API and a CLI tool.
77
repository: https://github.com/dart-lang/dart_style
8-
98
environment:
10-
sdk: '>=2.12.0-0 <3.0.0'
9+
sdk: ">=2.12.0-0 <3.0.0"
1110

1211
dependencies:
13-
analyzer: '>=2.6.0 <3.0.0'
14-
args: '>=1.0.0 <3.0.0'
12+
analyzer: ">=2.6.0 <4.0.0"
13+
args: ">=1.0.0 <3.0.0"
1514
path: ^1.0.0
16-
pub_semver: '>=1.4.4 <3.0.0'
15+
pub_semver: ">=1.4.4 <3.0.0"
1716
source_span: ^1.4.0
1817

1918
dev_dependencies:
@@ -26,7 +25,7 @@ dev_dependencies:
2625
test: ^1.16.8
2726
test_descriptor: ^2.0.0
2827
test_process: ^2.0.0
29-
yaml: '>=2.0.0 <4.0.0'
28+
yaml: ">=2.0.0 <4.0.0"
3029

3130
executables:
3231
dartfmt: format

0 commit comments

Comments
 (0)