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

Commit 1cfd925

Browse files
committed
Set minimum SDK at 2.8.4
1 parent 39ca7c5 commit 1cfd925

File tree

14 files changed

+15
-14
lines changed

14 files changed

+15
-14
lines changed

_benchmarks/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: _benchmarks
22
description: Benchmarks for AngularDart.
33
environment:
4-
sdk: ">=2.8.1 <3.0.0"
4+
sdk: ">=2.8.4 <3.0.0"
55

66
dependencies:
77
# No strict dependencies, we always use dependency_overrides.

_goldens/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: _goldens
22
description: Goldens for AngularDart.
33
environment:
4-
sdk: ">=2.8.1 <3.0.0"
4+
sdk: ">=2.8.4 <3.0.0"
55

66
dependencies:
77
# No strict dependencies, we always use dependency_overrides.

_tests/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: _tests
22
description: Tests for AngularDart.
33
environment:
4-
sdk: ">=2.8.1 <3.0.0"
4+
sdk: ">=2.8.4 <3.0.0"
55

66
dependencies:
77
# No strict dependencies, we always use dependency_overrides.

angular/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: 6.0.0-dev
33
description: Fast and productive web framework
44
repository: https://github.com/dart-lang/angular
55
environment:
6-
sdk: ">=2.8.1 <3.0.0"
6+
sdk: ">=2.8.4 <3.0.0"
77

88
dependencies:
99
# Runtime (or runtime *and* the compiler).

angular_ast/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Parser and utilities for AngularDart templates
44
version: 1.0.0
55

66
environment:
7-
sdk: ">=2.8.1 <3.0.0"
7+
sdk: ">=2.8.4 <3.0.0"
88

99
dependencies:
1010
analyzer: ">=0.39.8 <0.39.17"

angular_compiler/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Compiler for AngularDart.
44
version: 1.0.0
55

66
environment:
7-
sdk: ">=2.8.1 <3.0.0"
7+
sdk: ">=2.8.4 <3.0.0"
88

99
dependencies:
1010
analyzer: ">=0.39.8 <0.39.17"

angular_forms/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Forms framework for AngularDart.
44
version: 3.0.0-dev
55

66
environment:
7-
sdk: ">=2.8.1 <3.0.0"
7+
sdk: ">=2.8.4 <3.0.0"
88

99
dependencies:
1010
angular: ^6.0.0

angular_router/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Router for AngularDart.
44
version: 2.0.0-dev
55

66
environment:
7-
sdk: ">=2.8.1 <3.0.0"
7+
sdk: ">=2.8.4 <3.0.0"
88

99
dependencies:
1010
angular: ^6.0.0

angular_test/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Testing runner and library for AngularDart
44
version: 3.0.0-dev
55

66
environment:
7-
sdk: ">=2.8.1 <3.0.0"
7+
sdk: ">=2.8.4 <3.0.0"
88

99
dependencies:
1010
angular: ^6.0.0

dev/bin/pubspec.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import 'package:dev/find.dart';
88
/// What Dart SDK version to require for all pub packages.
99
///
1010
/// This allows us to (more) safely use new language/library features.
11-
const useSdkRange = '>=2.8.1 <3.0.0';
11+
const useSdkRange = '>=2.8.4 <3.0.0';
1212

1313
void main(List<String> args) {
1414
final dryRun = isDryRun(args);

0 commit comments

Comments
 (0)