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

update lints, require Dart 3.1 #90

Merged
merged 2 commits into from
Jun 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .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 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 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 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 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