diff --git a/docs/compatibility-table.mdx b/docs/compatibility-table.mdx index 79b085f2a..c2857e9e7 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 | patrol_cli | | -------------- | -------------- | -| 3.4.0 - | 2.6.0 - | +| 3.6.0 - | 2.6.5 - | +| 3.4.0 - 3.5.2 | 2.6.0 - 2.6.4 | | 3.0.0 - 3.3.0 | 2.3.0 - 2.5.0 | | 2.3.0 - 2.3.2 | 2.2.0 - 2.2.2 | | 2.0.1 - 2.2.5 | 2.0.1 - 2.1.5 | diff --git a/packages/patrol/CHANGELOG.md b/packages/patrol/CHANGELOG.md index cc1baf673..ea775963d 100644 --- a/packages/patrol/CHANGELOG.md +++ b/packages/patrol/CHANGELOG.md @@ -1,5 +1,6 @@ ## 3.6.0 +- Add clearing textfield before entering text on iOS (#2145). - Added the NativeAutomator2, which allows to interact with native using selectors designated for a specific platform (AndroidSelector and IOSSelector) (#2132). - Add support for --app-server-port and --test-server-port on Android (#2154). diff --git a/packages/patrol_cli/lib/src/base/constants.dart b/packages/patrol_cli/lib/src/base/constants.dart index 330111869..11951e44e 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 = '2.6.4'; +const version = '2.6.5'; diff --git a/packages/patrol_cli/pubspec.yaml b/packages/patrol_cli/pubspec.yaml index 408e45ee4..ba063ade2 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.6.4 # Must be kept in sync with constants.dart +version: 2.6.5 # 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