Skip to content

Commit

Permalink
update lints, require Dart 3.1 (dart-lang/typed_data#90)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevmoo authored Jun 21, 2024
1 parent fde3815 commit 7a429ad
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion pkgs/typed_data/.github/workflows/test-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
matrix:
# Add macos-latest and/or windows-latest if relevant for this package.
os: [ubuntu-latest]
sdk: [3.0.0, dev]
sdk: [3.1, dev]
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
- uses: dart-lang/setup-dart@f0ead981b4d9a35b37f30d36160575d60931ec30
Expand Down
2 changes: 1 addition & 1 deletion pkgs/typed_data/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## 1.3.3-wip

* Require Dart 3.0
* Require Dart 3.1

## 1.3.2

Expand Down
2 changes: 1 addition & 1 deletion pkgs/typed_data/lib/typed_buffers.dart
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
/// That means that using the `buffer` getter is not guaranteed
/// to return the same result each time it is used, and that the buffer may
/// be larger than what the list is using.
library typed_data.typed_buffers;
library;

export 'src/typed_buffer.dart' hide TypedDataBuffer;
2 changes: 1 addition & 1 deletion pkgs/typed_data/lib/typed_data.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// BSD-style license that can be found in the LICENSE file.

/// Utilities and functionality related to the "dart:typed_data" library.
library typed_data;
library;

export 'src/typed_queue.dart';
export 'typed_buffers.dart';
6 changes: 3 additions & 3 deletions pkgs/typed_data/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ topics:
- data-structures

environment:
sdk: ^3.0.0
sdk: ^3.1.0

dependencies:
collection: ^1.15.0

dev_dependencies:
dart_flutter_team_lints: ^2.0.0
test: ^1.16.0
dart_flutter_team_lints: ^3.0.0
test: ^1.16.6

0 comments on commit 7a429ad

Please sign in to comment.