diff --git a/docs/compatibility-table.mdx b/docs/compatibility-table.mdx index 9030baefa..900869446 100644 --- a/docs/compatibility-table.mdx +++ b/docs/compatibility-table.mdx @@ -13,7 +13,8 @@ the table below to assess which version you should use. | patrol_cli | patrol | | -------------- | -------------- | -| 3.2.1 - | 3.11.2 - | +| 3.3.0+ | 3.12.0+ | +| 3.2.1 | 3.11.2 | | 3.2.0 | 3.11.0 - 3.11.1| | 3.1.0 - 3.1.1 | 3.10.0 | | 2.6.5 - 3.0.1 | 3.6.0 - 3.10.0 | diff --git a/packages/patrol/CHANGELOG.md b/packages/patrol/CHANGELOG.md index c70ac7ef8..558d216f1 100644 --- a/packages/patrol/CHANGELOG.md +++ b/packages/patrol/CHANGELOG.md @@ -1,7 +1,9 @@ -## Unreleased +## 3.12.0 - Add `clear-permissions` flag on ios commands. (#2367) +This version requires version 3.3.0 of `patrol_cli` package. + ## 3.11.2 - Bump min Flutter SDK to 3.24.0 and Dart SDK to 3.5.0 (#2371) diff --git a/packages/patrol/pubspec.yaml b/packages/patrol/pubspec.yaml index ccb6bd7d2..a36c2d895 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: 3.11.2 +version: 3.12.0 homepage: https://patrol.leancode.co repository: https://github.com/leancodepl/patrol/tree/master/packages/patrol issue_tracker: https://github.com/leancodepl/patrol/issues diff --git a/packages/patrol_cli/CHANGELOG.md b/packages/patrol_cli/CHANGELOG.md index 5b50b3c3b..b94636c57 100644 --- a/packages/patrol_cli/CHANGELOG.md +++ b/packages/patrol_cli/CHANGELOG.md @@ -1,7 +1,9 @@ -## Unreleased +## 3.3.0 - Add `clear-permissions` flag on ios commands. (#2367) +This version requires version 3.12.0 of `patrol` package. + ## 3.2.1 - Allow running Patrol tests from any subfolder of the project (#2351) diff --git a/packages/patrol_cli/lib/src/base/constants.dart b/packages/patrol_cli/lib/src/base/constants.dart index 54be515e4..34fa1e61e 100644 --- a/packages/patrol_cli/lib/src/base/constants.dart +++ b/packages/patrol_cli/lib/src/base/constants.dart @@ -1,3 +1,3 @@ /// Version of Patrol CLI. Must be kept in sync with pubspec.yaml. /// If you update this, make sure that compatibility-table.mdx is updated (if needed) -const version = '3.2.1'; +const version = '3.3.0'; diff --git a/packages/patrol_cli/lib/src/compatibility_checker/compatibility_checker.dart b/packages/patrol_cli/lib/src/compatibility_checker/compatibility_checker.dart index c8041f83c..212548e51 100644 --- a/packages/patrol_cli/lib/src/compatibility_checker/compatibility_checker.dart +++ b/packages/patrol_cli/lib/src/compatibility_checker/compatibility_checker.dart @@ -207,6 +207,10 @@ final _patrolVersionRange = [ ), VersionRange( min: Version.parse('3.11.2'), + max: Version.parse('3.11.2'), + ), + VersionRange( + min: Version.parse('3.12.0'), ), ]; @@ -249,5 +253,9 @@ final _patrolCliVersionRange = [ ), VersionRange( min: Version.parse('3.2.1'), + max: Version.parse('3.2.1'), + ), + VersionRange( + min: Version.parse('3.3.0'), ), ]; diff --git a/packages/patrol_cli/pubspec.yaml b/packages/patrol_cli/pubspec.yaml index 769d04a83..a2341aa77 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: 3.2.1 # Must be kept in sync with constants.dart +version: 3.3.0 # Must be kept in sync with constants.dart homepage: https://patrol.leancode.co repository: https://github.com/leancodepl/patrol/tree/master/packages/patrol_cli issue_tracker: https://github.com/leancodepl/patrol/issues?q=is%3Aopen+is%3Aissue+label%3A%22package%3A+patrol_cli%22