Skip to content

Commit

Permalink
Merge pull request #2338 from leancodepl/fix/coverage-changelog
Browse files Browse the repository at this point in the history
Add version compatibility notes to changelogs
  • Loading branch information
gogolon authored Sep 18, 2024
2 parents b81add2 + a210708 commit 49ba68c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions packages/patrol/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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; \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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; \
Expand Down
1 change: 1 addition & 0 deletions packages/patrol_cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down

0 comments on commit 49ba68c

Please sign in to comment.