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

Commit

Permalink
Update test_api dependency, bump & fix lints, prepare release
Browse files Browse the repository at this point in the history
Closes #236
  • Loading branch information
kevmoo committed Dec 13, 2023
1 parent fcbd361 commit 4674223
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
## 0.12.17-wip
## 0.12.17

* Require Dart 3.0

## 0.12.16

Expand Down
2 changes: 0 additions & 2 deletions analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ linter:
rules:
- always_declare_return_types
- avoid_private_typedef_functions
- avoid_returning_null
- avoid_returning_null_for_future
- avoid_unused_constructor_parameters
- cancel_subscriptions
- comment_references
Expand Down
2 changes: 2 additions & 0 deletions lib/matcher.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
// BSD-style license that can be found in the LICENSE file.

/// Support for specifying test expectations, such as for unit tests.
library;

export 'src/core_matchers.dart';
export 'src/custom_matcher.dart';
export 'src/description.dart';
Expand Down
12 changes: 6 additions & 6 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
name: matcher
version: 0.12.17-wip
version: 0.12.17
description: >-
Support for specifying test expectations via an extensible Matcher class.
Also includes a number of built-in Matcher implementations for common cases.
repository: https://github.com/dart-lang/matcher

environment:
sdk: ">=2.18.0 <3.0.0"
sdk: ^3.0.0

dependencies:
async: ^2.10.0
meta: ^1.8.0
stack_trace: ^1.10.0
term_glyph: ^1.2.0
test_api: ">=0.5.0 <0.7.0"
test_api: ">=0.5.0 <0.8.0"

dev_dependencies:
fake_async: ^1.3.0
lints: ^2.0.0
lints: ^3.0.0
test: ^1.23.0

dependency_overrides:
test: 1.24.2
test_api: 0.5.2
test: 1.25.0
test_api: 0.7.0

0 comments on commit 4674223

Please sign in to comment.