From 7e1b19be33c26c7213dd2e11b5b928ebcc480f6f Mon Sep 17 00:00:00 2001
From: Jakub Lange <jakub.lange.gd@gmail.com>
Date: Wed, 18 Sep 2024 14:22:48 +0200
Subject: [PATCH 1/3] Add version requirement notes

---
 packages/patrol/CHANGELOG.md     | 1 +
 packages/patrol_cli/CHANGELOG.md | 1 +
 2 files changed, 2 insertions(+)

diff --git a/packages/patrol/CHANGELOG.md b/packages/patrol/CHANGELOG.md
index ebee09749..6a63e7e83 100644
--- a/packages/patrol/CHANGELOG.md
+++ b/packages/patrol/CHANGELOG.md
@@ -3,6 +3,7 @@
 - Add code coverage collection support. (#2294)
 - No throw error in `selectFineLocation` when it's already selected. (#2302)
 - Add option to select tap location in `enterText` and `enterTextByIndex` (#2312)
+This version requires version 3.2.0 of `patrol/patrol_cli` package.
 
 ## 3.10.0
 
diff --git a/packages/patrol_cli/CHANGELOG.md b/packages/patrol_cli/CHANGELOG.md
index c71c0231d..289055193 100644
--- a/packages/patrol_cli/CHANGELOG.md
+++ b/packages/patrol_cli/CHANGELOG.md
@@ -1,6 +1,7 @@
 # 3.2.0
 
 - Add code coverage collection support (#2294)
+- This version requires version 3.11.0 of `patrol/patrol` package.
 
 ## 3.1.1
 

From f0f2babf4a0bcff3430b5af5b91a667e1d9a19c7 Mon Sep 17 00:00:00 2001
From: Jakub Lange <jakub.lange.gd@gmail.com>
Date: Wed, 18 Sep 2024 14:23:42 +0200
Subject: [PATCH 2/3] Remove redundant dash

---
 packages/patrol_cli/CHANGELOG.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/packages/patrol_cli/CHANGELOG.md b/packages/patrol_cli/CHANGELOG.md
index 289055193..bf65c827c 100644
--- a/packages/patrol_cli/CHANGELOG.md
+++ b/packages/patrol_cli/CHANGELOG.md
@@ -1,7 +1,7 @@
 # 3.2.0
 
 - Add code coverage collection support (#2294)
-- This version requires version 3.11.0 of `patrol/patrol` package.
+This version requires version 3.11.0 of `patrol/patrol` package.
 
 ## 3.1.1
 

From a21070851995d3e0f721ea6d2689234f242177f1 Mon Sep 17 00:00:00 2001
From: Jakub Lange <jakub.lange.gd@gmail.com>
Date: Wed, 18 Sep 2024 14:43:23 +0200
Subject: [PATCH 3/3] Fix formatting

---
 packages/patrol/darwin/Classes/PatrolIntegrationTestIosRunner.h | 2 +-
 .../patrol/darwin/Classes/PatrolIntegrationTestMacosRunner.h    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/packages/patrol/darwin/Classes/PatrolIntegrationTestIosRunner.h b/packages/patrol/darwin/Classes/PatrolIntegrationTestIosRunner.h
index b155e03dd..15260d6d9 100644
--- a/packages/patrol/darwin/Classes/PatrolIntegrationTestIosRunner.h
+++ b/packages/patrol/darwin/Classes/PatrolIntegrationTestIosRunner.h
@@ -135,7 +135,7 @@
       SEL selector = NSSelectorFromString(dartTestName);                                                        \
       class_addMethod(self, selector, implementation, "v@:");                                                   \
                                                                                                                 \
-      /* Step 2 – create invocations to the dynamically created methods */                                    \
+      /* Step 2 – create invocations to the dynamically created methods */                                      \
       NSMethodSignature *signature = [self instanceMethodSignatureForSelector:selector];                        \
       NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:signature];                        \
       invocation.selector = selector;                                                                           \
diff --git a/packages/patrol/darwin/Classes/PatrolIntegrationTestMacosRunner.h b/packages/patrol/darwin/Classes/PatrolIntegrationTestMacosRunner.h
index ae0e5bff3..c51563d76 100644
--- a/packages/patrol/darwin/Classes/PatrolIntegrationTestMacosRunner.h
+++ b/packages/patrol/darwin/Classes/PatrolIntegrationTestMacosRunner.h
@@ -110,7 +110,7 @@
       SEL selector = NSSelectorFromString(dartTestName);                                                    \
       class_addMethod(self, selector, implementation, "v@:");                                               \
                                                                                                             \
-      /* Step 2 – create invocations to the dynamically created methods */                                \
+      /* Step 2 – create invocations to the dynamically created methods */                                  \
       NSMethodSignature *signature = [self instanceMethodSignatureForSelector:selector];                    \
       NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:signature];                    \
       invocation.selector = selector;                                                                       \