From 2ec50d21a8da67a2b72fb0ec32784414eeae2302 Mon Sep 17 00:00:00 2001 From: pdenert Date: Fri, 22 Nov 2024 17:36:02 +0100 Subject: [PATCH] Prepare `patrol` and `patrol_cli` to release --- docs/compatibility-table.mdx | 3 ++- packages/patrol/CHANGELOG.md | 21 +++---------------- packages/patrol/pubspec.yaml | 2 +- packages/patrol_cli/CHANGELOG.md | 16 +++----------- .../compatibility_checker.dart | 8 +++++++ 5 files changed, 17 insertions(+), 33 deletions(-) diff --git a/docs/compatibility-table.mdx b/docs/compatibility-table.mdx index 91b068203..eea27570d 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 | Min Flutter Version | | -------------- | -------------- | ------------------- | -| 3.3.0+ | 3.12.0+ | 3.24.0 | +| 3.4.0+ | 3.13.0+ | 3.24.0 | +| 3.3.0 | 3.12.0 | 3.24.0 | | 3.2.1 | 3.11.2 | 3.24.0 | | 3.2.0 | 3.11.0 - 3.11.1| 3.22.0 | | 3.1.0 - 3.1.1 | 3.10.0 | 3.22.0 | diff --git a/packages/patrol/CHANGELOG.md b/packages/patrol/CHANGELOG.md index d06b75795..fe09b83aa 100644 --- a/packages/patrol/CHANGELOG.md +++ b/packages/patrol/CHANGELOG.md @@ -1,25 +1,10 @@ -## 3.13.0-dev.5 - -- Pass config to `patrol_log`. - -## 3.13.0-dev.4 - -- Bump `patrol_finders` and `patrol_log` - -## 3.13.0-dev.3 +## 3.13.0 +- Add support for the `patrol_log` package. (#2387) +- Fix tapping on notification on iOS 18. (#2394) - Fix macos functionality. (#2408) - Bump `patrol_finders` and enable logging. -## 3.13.0-dev.2 - -- Bump `patrol_log` version. - -## 3.13.0-dev.1 - -- Add support for the patrol_log package. (#2387) -- Fix tapping on notification on iOS 18. (#2394) - ## 3.12.0 - Add `clear-permissions` flag on ios commands. (#2367) diff --git a/packages/patrol/pubspec.yaml b/packages/patrol/pubspec.yaml index 65abfeb1b..54d482893 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.13.0-dev.5 +version: 3.13.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 61ee125f3..d199264df 100644 --- a/packages/patrol_cli/CHANGELOG.md +++ b/packages/patrol_cli/CHANGELOG.md @@ -1,18 +1,8 @@ -## 3.4.0-dev.4 +## 3.4.0 -- Bump `patrol_log`. +- Add support for the `patrol_log` package. (#2387) -## 3.4.0-dev.3 - -- Add flag `clear-test-steps`. (#2421) - -## 3.4.0-dev.2 - -- Bump `patrol_log` version. (#2402) - -## 3.4.0-dev.1 - -- Add support for the patrol_log package. (#2387) +This version requires version 3.13.0 of `patrol` package. ## 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 212548e51..2f5e47ab4 100644 --- a/packages/patrol_cli/lib/src/compatibility_checker/compatibility_checker.dart +++ b/packages/patrol_cli/lib/src/compatibility_checker/compatibility_checker.dart @@ -211,6 +211,10 @@ final _patrolVersionRange = [ ), VersionRange( min: Version.parse('3.12.0'), + max: Version.parse('3.12.0'), + ), + VersionRange( + min: Version.parse('3.13.0'), ), ]; @@ -257,5 +261,9 @@ final _patrolCliVersionRange = [ ), VersionRange( min: Version.parse('3.3.0'), + max: Version.parse('3.3.0'), + ), + VersionRange( + min: Version.parse('3.4.0'), ), ];