Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

patrol_finders: bump version to 2.0.0 #1900

Merged
merged 1 commit into from
Nov 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions packages/patrol_finders/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
## Unreleased
## 2.0.0

- Bump minimum supported Flutter version to 3.16
- Bump minimum supported Flutter version to 3.16 to be compatible with breaking
changes in `flutter_test`
- **BREAKING**:
- Remove deprecated `andSettle` from all `PatrolTester` and `PatrolFinder`
methods. Use `settlePolicy` instead (#1892)
- The deprecated `andSettle` method has been removed from all `PatrolTester`
and `PatrolFinder` methods like `tap()`, `enterText()`, and so on. Developers
should now use `settlePolicy` as a replacement, which has been available since
June (#1892)
- The default `settlePolicy` has been changed to `trySettle` (#1892)

## 1.0.0

Expand Down
2 changes: 1 addition & 1 deletion packages/patrol_finders/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: patrol_finders
description: Streamlined, high-level API on top of `flutter_test`.
version: 1.0.0
version: 2.0.0
homepage: https://patrol.leancode.co
repository: https://github.com/leancodepl/patrol
issue_tracker: https://github.com/leancodepl/patrol/issues
Expand Down
Loading