diff --git a/packages/patrol/CHANGELOG.md b/packages/patrol/CHANGELOG.md index 7be22a66d..04921cb25 100644 --- a/packages/patrol/CHANGELOG.md +++ b/packages/patrol/CHANGELOG.md @@ -1,4 +1,4 @@ -## Unreleased +## 2.0.0 Patrol 2.0 is released! @@ -6,6 +6,8 @@ Patrol 2.0 is released! - Read the article about how Patrol 2.0 fixes the `integration_test` plugin [here](https://leancode.co/blog/patrol-2-0-improved-flutter-ui-testing) +This version requires version 2.0.0 of `patrol_cli` package. + ## 1.1.5 - Fix tests failing when using native automation on Android + Flutter 3.10 diff --git a/packages/patrol/pubspec.yaml b/packages/patrol/pubspec.yaml index f2af27f94..b1f79d7b9 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: 1.1.5 +version: 2.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 1d781575f..123c2b8ad 100644 --- a/packages/patrol_cli/CHANGELOG.md +++ b/packages/patrol_cli/CHANGELOG.md @@ -1,6 +1,12 @@ -## Unreleased +## 2.0.0 -[Patrol 2.0 is released!](https://leancode.co/blog) +Patrol 2.0 is released! + +- Read the changelog and migration guide [here](https://patrol.leancode.co/v2) +- Read the article about how Patrol 2.0 fixes the `integration_test` plugin + [here](https://leancode.co/blog/patrol-2-0-improved-flutter-ui-testing) + +This version requires version 2.0.0 of `patrol` package. ## 1.1.11 diff --git a/packages/patrol_cli/lib/src/base/constants.dart b/packages/patrol_cli/lib/src/base/constants.dart index e286f6876..8e0538848 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 = '1.1.11'; +const version = '2.0.0'; diff --git a/packages/patrol_cli/pubspec.yaml b/packages/patrol_cli/pubspec.yaml index 74f86f9fb..c1c0cf866 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: 1.1.11 # Must be kept in sync with constants.dart +version: 2.0.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