Skip to content

Commit

Permalink
Prepare release 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
passsy committed Aug 30, 2023
1 parent f411ea6 commit c90ad9c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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<Text>()`, `spot<SelectableText>()`, ... #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
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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

Expand Down

0 comments on commit c90ad9c

Please sign in to comment.