Skip to content

Commit 7508fe6

Browse files
committed
Support latest analyzer
and one nit about annotating overrides
1 parent 7006211 commit 7508fe6

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
# Changelog
1+
## 0.4.1+1
2+
- Support analyzer 0.29.x
23

34
## 0.4.1
45
- Support analyzer 0.28.x

pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: build
2-
version: 0.4.1
2+
version: 0.4.1+1
33
description: A build system for Dart.
44
author: Dart Team <[email protected]>
55
homepage: https://github.com/dart-lang/build
@@ -8,7 +8,7 @@ environment:
88
sdk: '>=1.9.1 <2.0.0'
99

1010
dependencies:
11-
analyzer: ">=0.27.1 <0.29.0"
11+
analyzer: ">=0.27.1 <0.30.0"
1212
barback: ^0.15.0
1313
code_transformers: ^0.4.1
1414
crypto: ">=0.9.2 <3.0.0"

test/analyzer/resolver_test.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ class ResolversSpy implements Resolvers {
2121
new code_transformers.Resolvers(code_transformers.dartSdkDirectory,
2222
useSharedSources: true);
2323

24+
@override
2425
Future<Resolver> get(BuildStep buildStep, List<AssetId> entryPoints,
2526
bool resolveAllConstants) async {
2627
lastResolved = await _resolvers.get(toBarbackTransform(buildStep),

0 commit comments

Comments
 (0)