Skip to content
This repository was archived by the owner on Oct 18, 2024. It is now read-only.

Commit 8529929

Browse files
authored
update lints, require Dart 3.1 (#90)
1 parent c90e624 commit 8529929

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.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: [3.0.0, dev]
50+
sdk: [3.1, dev]
5151
steps:
5252
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
5353
- uses: dart-lang/setup-dart@f0ead981b4d9a35b37f30d36160575d60931ec30

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## 1.3.3-wip
22

3-
* Require Dart 3.0
3+
* Require Dart 3.1
44

55
## 1.3.2
66

lib/typed_buffers.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
/// That means that using the `buffer` getter is not guaranteed
1212
/// to return the same result each time it is used, and that the buffer may
1313
/// be larger than what the list is using.
14-
library typed_data.typed_buffers;
14+
library;
1515

1616
export 'src/typed_buffer.dart' hide TypedDataBuffer;

lib/typed_data.dart

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

55
/// Utilities and functionality related to the "dart:typed_data" library.
6-
library typed_data;
6+
library;
77

88
export 'src/typed_queue.dart';
99
export 'typed_buffers.dart';

pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ topics:
88
- data-structures
99

1010
environment:
11-
sdk: ^3.0.0
11+
sdk: ^3.1.0
1212

1313
dependencies:
1414
collection: ^1.15.0
1515

1616
dev_dependencies:
17-
dart_flutter_team_lints: ^2.0.0
18-
test: ^1.16.0
17+
dart_flutter_team_lints: ^3.0.0
18+
test: ^1.16.6

0 commit comments

Comments
 (0)