diff --git a/packages/patrol/CHANGELOG.md b/packages/patrol/CHANGELOG.md index a0ef2a75f..ed4c83a72 100644 --- a/packages/patrol/CHANGELOG.md +++ b/packages/patrol/CHANGELOG.md @@ -1,4 +1,4 @@ -## Unreleased +## 3.0.0 Give a warm welcome to the new **Patrol DevTools Extension**! @@ -23,6 +23,8 @@ Other changes: - Remove dependency on `integration_test` plugin (#1882) +This version requires version 2.3.0 of `patrol_cli` package. + ## 2.3.2 - Add `PatrolFinder.longPress()` (#1825) diff --git a/packages/patrol/pubspec.yaml b/packages/patrol/pubspec.yaml index 1d0d7e1d7..a3f336bef 100644 --- a/packages/patrol/pubspec.yaml +++ b/packages/patrol/pubspec.yaml @@ -2,7 +2,7 @@ name: patrol description: > Powerful Flutter-native UI testing framework overcoming limitations of existing Flutter testing tools. Ready for action! -version: 2.3.2 +version: 3.0.0 homepage: https://patrol.leancode.co repository: https://github.com/leancodepl/patrol issue_tracker: https://github.com/leancodepl/patrol/issues diff --git a/packages/patrol_cli/CHANGELOG.md b/packages/patrol_cli/CHANGELOG.md index 6b9c266ec..4a5a7ed28 100644 --- a/packages/patrol_cli/CHANGELOG.md +++ b/packages/patrol_cli/CHANGELOG.md @@ -1,9 +1,11 @@ -## Unreleased +## 2.3.0 - Add support for Patrol 3.0 and its DevTools extension (#1829) - Automatically open DevTools when running `patrol develop`. This behavior can be disabled by passing `--no-open-devtools` flag. +This version requires version 3.0.0 of `patrol` package. + ## 2.2.2 - Fix parsing `--dart-defines` when a value contains a comma (#1845) diff --git a/packages/patrol_cli/lib/src/base/constants.dart b/packages/patrol_cli/lib/src/base/constants.dart index e58665510..5cb48ea94 100644 --- a/packages/patrol_cli/lib/src/base/constants.dart +++ b/packages/patrol_cli/lib/src/base/constants.dart @@ -1,2 +1,2 @@ /// Version of Patrol CLI. Must be kept in sync with pubspec.yaml. -const version = '2.2.2'; +const version = '2.3.0'; diff --git a/packages/patrol_cli/pubspec.yaml b/packages/patrol_cli/pubspec.yaml index 565784c78..039a16b4b 100644 --- a/packages/patrol_cli/pubspec.yaml +++ b/packages/patrol_cli/pubspec.yaml @@ -1,7 +1,7 @@ name: patrol_cli description: > Command-line tool for Patrol, a powerful Flutter-native UI testing framework. -version: 2.2.2 # Must be kept in sync with constants.dart +version: 2.3.0 # Must be kept in sync with constants.dart homepage: https://patrol.leancode.co repository: https://github.com/leancodepl/patrol issue_tracker: https://github.com/leancodepl/patrol/issues