Skip to content

Commit 778b800

Browse files
authored
Require Dart 3.0, update lints (dart-archive/typed_data#67)
1 parent a44b9cb commit 778b800

File tree

6 files changed

+13
-4
lines changed

6 files changed

+13
-4
lines changed

pkgs/typed_data/.github/workflows/test-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
matrix:
4848
# Add macos-latest and/or windows-latest if relevant for this package.
4949
os: [ubuntu-latest]
50-
sdk: [2.17.0, dev]
50+
sdk: [3.0.0, dev]
5151
steps:
5252
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab
5353
- uses: dart-lang/setup-dart@d6a63dab3335f427404425de0fbfed4686d93c4f

pkgs/typed_data/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.3.3-wip
2+
3+
* Require Dart 3.0
4+
15
## 1.3.2
26

37
* Added package topics to the pubspec file.

pkgs/typed_data/analysis_options.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# https://dart.dev/guides/language/analysis-options
12
include: package:dart_flutter_team_lints/analysis_options.yaml
23

34
analyzer:

pkgs/typed_data/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: typed_data
2-
version: 1.3.2
2+
version: 1.3.3-wip
33
description: >-
44
Utility functions and classes related to the dart:typed_data library.
55
repository: https://github.com/dart-lang/typed_data
@@ -8,11 +8,11 @@ topics:
88
- data-structures
99

1010
environment:
11-
sdk: '>=2.17.0 <4.0.0'
11+
sdk: ^3.0.0
1212

1313
dependencies:
1414
collection: ^1.15.0
1515

1616
dev_dependencies:
17-
dart_flutter_team_lints: ^0.1.0
17+
dart_flutter_team_lints: ^1.0.0
1818
test: ^1.16.0

pkgs/typed_data/test/typed_buffers_test.dart

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
// BSD-style license that can be found in the LICENSE file.
44

55
@TestOn('!vm')
6+
library;
7+
68
import 'dart:typed_data';
79

810
import 'package:test/test.dart';

pkgs/typed_data/test/typed_buffers_vm_test.dart

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
// BSD-style license that can be found in the LICENSE file.
44

55
@TestOn('vm')
6+
library;
7+
68
import 'package:test/test.dart';
79

810
import 'typed_buffers_test.dart';

0 commit comments

Comments
 (0)