Skip to content

Commit

Permalink
Prepare 0.4.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
passsy committed Aug 17, 2023
1 parent 8da2938 commit 9a7eb96
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## 0.4.1
- Added screenshot methods #14
```dart
/// Takes a screenshot of the entire window
await takeScreenshot();
/// Takes a screenshot of a single Screen/Widget
final homePage = spotSingle<HomePage>();
await takeScreenshot(selector: homePage);
/// Use it as extension
await spotSingle<HomePage>().takeScreenshot();
```
- Export all types from `checks.dart` which are required to use `hasProp`
- Update for Flutter 3.13

## 0.4.0
- Added `act.tap(button)` to tap widgets #9
- Raise min Flutter version to 3.10.0
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.0
version: 0.4.1
repository: https://github.com/passsy/spot
issue_tracker: https://github.com/passsy/spot/issues

Expand Down

0 comments on commit 9a7eb96

Please sign in to comment.