Skip to content
This repository was archived by the owner on Jul 16, 2023. It is now read-only.

Commit a5397e5

Browse files
committed
revert: Changed the supported analyzer version to ^2.0.0.
revert: Changed the supported `analyzer_plugin` version to `^0.7.0`.
1 parent aa5b0ed commit a5397e5

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
## 4.2.0-dev.4
44

55
* Revert: Changed the supported `analyzer` version to `^2.1.0`.
6+
* Revert: Changed the supported `analyzer` version to `^2.0.0`.
7+
* Revert: Changed the supported `analyzer_plugin` version to `^0.7.0`.
68

79
## 4.2.0-dev.3
810

lib/src/analyzer_plugin/analyzer_plugin_utils.dart

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ plugin.AnalysisErrorFixes codeIssueToAnalysisErrorFixes(
2525
issue.location.length,
2626
issue.location.start.line,
2727
issue.location.start.column,
28-
endLine: issue.location.end.line,
29-
endColumn: issue.location.end.column,
28+
issue.location.end.line,
29+
issue.location.end.column,
3030
),
3131
issue.message,
3232
issue.ruleId,
@@ -68,8 +68,8 @@ plugin.AnalysisErrorFixes designIssueToAnalysisErrorFixes(Issue issue) =>
6868
issue.location.length,
6969
issue.location.start.line,
7070
issue.location.start.column,
71-
endLine: issue.location.end.line,
72-
endColumn: issue.location.end.column,
71+
issue.location.end.line,
72+
issue.location.end.column,
7373
),
7474
issue.message,
7575
issue.ruleId,
@@ -93,8 +93,8 @@ plugin.AnalysisErrorFixes metricReportToAnalysisErrorFixes(
9393
length,
9494
startLocation.line,
9595
startLocation.column,
96-
endLine: startLocation.line,
97-
endColumn: startLocation.column,
96+
startLocation.line,
97+
startLocation.column,
9898
),
9999
message,
100100
metricId,

pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ environment:
99
sdk: ">=2.12.0 <3.0.0"
1010

1111
dependencies:
12-
analyzer: 2.0.0
13-
analyzer_plugin: ^0.7.0
12+
analyzer: ^1.7.0
13+
analyzer_plugin: ^0.6.0
1414
ansicolor: ^2.0.1
1515
args: ^2.0.0
1616
collection: ^1.15.0

0 commit comments

Comments
 (0)