From 35b71a35a54e0eb6243a88efb352db72bd4723d2 Mon Sep 17 00:00:00 2001 From: piotruela Date: Mon, 21 Oct 2024 08:48:26 +0200 Subject: [PATCH] Update compatibility table --- docs/compatibility-table.mdx | 5 +++-- .../src/compatibility_checker/compatibility_checker.dart | 8 ++++++++ 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/docs/compatibility-table.mdx b/docs/compatibility-table.mdx index e553eedaf..9030baefa 100644 --- a/docs/compatibility-table.mdx +++ b/docs/compatibility-table.mdx @@ -13,8 +13,9 @@ the table below to assess which version you should use. | patrol_cli | patrol | | -------------- | -------------- | -| 3.2.0 - | 3.11.0 - | -| 3.1.0 - 3.1.1 | 3.10.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 | | 2.6.0 - 2.6.4 | 3.4.0 - 3.5.2 | | 2.3.0 - 2.5.0 | 3.0.0 - 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 9797942eb..c8041f83c 100644 --- a/packages/patrol_cli/lib/src/compatibility_checker/compatibility_checker.dart +++ b/packages/patrol_cli/lib/src/compatibility_checker/compatibility_checker.dart @@ -203,6 +203,10 @@ final _patrolVersionRange = [ ), VersionRange( min: Version.parse('3.11.0'), + max: Version.parse('3.11.1'), + ), + VersionRange( + min: Version.parse('3.11.2'), ), ]; @@ -241,5 +245,9 @@ final _patrolCliVersionRange = [ ), VersionRange( min: Version.parse('3.2.0'), + max: Version.parse('3.2.0'), + ), + VersionRange( + min: Version.parse('3.2.1'), ), ];