From 1727bb6b8aa72a5a4dd4c33ef6e9bd493c195076 Mon Sep 17 00:00:00 2001 From: pdenert Date: Fri, 2 Aug 2024 16:40:09 +0200 Subject: [PATCH] Update versions and changelogs --- dev/e2e_app/pubspec.lock | 2 +- docs/compatibility-table.mdx | 3 ++- packages/patrol/CHANGELOG.md | 2 +- packages/patrol/pubspec.yaml | 2 +- packages/patrol_cli/CHANGELOG.md | 4 +++- packages/patrol_cli/lib/src/base/constants.dart | 2 +- packages/patrol_cli/pubspec.yaml | 2 +- 7 files changed, 10 insertions(+), 7 deletions(-) diff --git a/dev/e2e_app/pubspec.lock b/dev/e2e_app/pubspec.lock index 14644de4f..4ec538357 100644 --- a/dev/e2e_app/pubspec.lock +++ b/dev/e2e_app/pubspec.lock @@ -446,7 +446,7 @@ packages: path: "../../packages/patrol" relative: true source: path - version: "3.9.0" + version: "3.10.0" patrol_finders: dependency: transitive description: diff --git a/docs/compatibility-table.mdx b/docs/compatibility-table.mdx index c2857e9e7..213a09c4d 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.6.0 - | 2.6.5 - | +| 3.10.0 - | 3.1.0 - | +| 3.6.0 - | 2.6.5 - 3.0.1 | | 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 | diff --git a/packages/patrol/CHANGELOG.md b/packages/patrol/CHANGELOG.md index 21a1cb55a..41b722cd6 100644 --- a/packages/patrol/CHANGELOG.md +++ b/packages/patrol/CHANGELOG.md @@ -1,4 +1,4 @@ -## Unreleased +## 3.10.0 - Implement `enableBluetooth` and `disableBluetooth` methods for Android > 11. (#2254) - Implement `enableAirplaneMode` and `disableAirplaneMode` methods for Android. (#2254) diff --git a/packages/patrol/pubspec.yaml b/packages/patrol/pubspec.yaml index 073bca04b..ce18cab07 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.9.0 +version: 3.10.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 405f07e9d..18949f79d 100644 --- a/packages/patrol_cli/CHANGELOG.md +++ b/packages/patrol_cli/CHANGELOG.md @@ -1,6 +1,8 @@ -## Unreleased +## 3.1.0 - Add `tags` and `exclude-tags`. (#2286) +This version requires version 3.10.0 of `patrol` package. + ## 3.0.1 - Fallback to read `java` version from `JAVA_HOME` when `flutter doctor` doesn't print any. diff --git a/packages/patrol_cli/lib/src/base/constants.dart b/packages/patrol_cli/lib/src/base/constants.dart index 1604a0509..3b97ef275 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.0.1'; +const version = '3.1.0'; diff --git a/packages/patrol_cli/pubspec.yaml b/packages/patrol_cli/pubspec.yaml index f8ced06dd..f2964f566 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.0.1 # Must be kept in sync with constants.dart +version: 3.1.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