Skip to content

Commit a4304d1

Browse files
authored
Update and fix lints, require Dart 3.1 (#328)
1 parent 253f69b commit a4304d1

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
sdk: [3.0.0, dev]
17+
sdk: [3.1, dev]
1818

1919
steps:
2020
# These are the latest versions of the github actions; dependabot will

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
- Fixed `Matrix3.rotationY` direction (Contributed by tlserver, moritzblume)
55
- Added an operator== to Quaternion so that two instances of quaternions can
66
be evaluated for equality.
7-
- Require Dart 3.0
7+
- Require Dart 3.1
88

99
## 2.1.4
1010

lib/hash.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// license that can be found in the LICENSE file.
44

55
@Deprecated('Use Object.hashAll instead')
6-
library hash;
6+
library;
77

88
///
99
/// Generates a hash code for multiple [objects].

pubspec.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ description: A Vector Math library for 2D and 3D applications.
44
repository: https://github.com/google/vector_math.dart
55

66
environment:
7-
sdk: ^3.0.0
7+
sdk: ^3.1.0
88

99
dev_dependencies:
1010
benchmark_harness: ^2.0.0
11-
build_runner: ^2.0.0
12-
build_test: ^2.0.0
13-
build_web_compilers: ^4.0.0
14-
dart_flutter_team_lints: ^2.0.0
11+
build_runner: ^2.2.1
12+
build_test: ^2.1.2
13+
build_web_compilers: ^4.0.3
14+
dart_flutter_team_lints: ^3.0.0
1515
path: ^1.8.0
16-
test: ^1.16.0
16+
test: ^1.21.6

0 commit comments

Comments
 (0)