diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ca1b03..179f557 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +## 0.12.17-wip + ## 0.12.16 * Expand bounds on `test_api` dependency to allow the next breaking release diff --git a/lib/src/expect/never_called.dart b/lib/src/expect/never_called.dart index 46d27f0..20b5299 100644 --- a/lib/src/expect/never_called.dart +++ b/lib/src/expect/never_called.dart @@ -17,7 +17,7 @@ import 'util/pretty_print.dart'; /// This can safely be passed in place of any callback that takes ten or fewer /// positional parameters. For example: /// -/// ``` +/// ```dart /// // Asserts that the stream never emits an event. /// stream.listen(neverCalled); /// ``` diff --git a/pubspec.yaml b/pubspec.yaml index 8145106..3979a07 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: matcher -version: 0.12.16 +version: 0.12.17-wip description: >- Support for specifying test expectations via an extensible Matcher class. Also includes a number of built-in Matcher implementations for common cases.