From c90ad9c269f205bdb67ad24fc9a84bb4ed3b19cd Mon Sep 17 00:00:00 2001 From: Pascal Welsch Date: Thu, 31 Aug 2023 01:24:40 +0200 Subject: [PATCH] Prepare release 0.5.0 --- CHANGELOG.md | 8 ++++++++ pubspec.yaml | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7883d341..58de9c7e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.5.0 +- **Breaking** `act.tap` is now async, use `await act.tap()` #17 +- New: `spotText('foo')` finds any text on screen using "contains". The new `AnyText` widget combines `Text`, `SelectableText`, `RichText` and `EditableText` #18 +- New: `spotTextWhere((text) => )` allows to match text with custom logic #18 +- Deprecated: `spotSingleText` and `spotTexts` are deprecated in favor of `spotText` and the basic `spot()`, `spot()`, ... #18 +- Fix: `hasProp` matcher can now check for null values with `(it) => it.isNull()` #18 +- Improvement: `withDiagnosticProp` now falls back to the default value of a `DiagnosticNode` #18 + ## 0.4.1 - Added screenshot methods #14 ```dart diff --git a/pubspec.yaml b/pubspec.yaml index cd00d79f..f4410338 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: spot description: Chainable finders and better assertions for powerful widget tests. -version: 0.4.1 +version: 0.5.0 repository: https://github.com/passsy/spot issue_tracker: https://github.com/passsy/spot/issues