Skip to content

Commit

Permalink
Prepare patrol and patrol_cli to release
Browse files Browse the repository at this point in the history
  • Loading branch information
pdenert committed Nov 22, 2024
1 parent 8391192 commit 2ec50d2
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 33 deletions.
3 changes: 2 additions & 1 deletion docs/compatibility-table.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down
21 changes: 3 additions & 18 deletions packages/patrol/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion packages/patrol/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
16 changes: 3 additions & 13 deletions packages/patrol_cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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'),
),
];

Expand Down Expand Up @@ -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'),
),
];

0 comments on commit 2ec50d2

Please sign in to comment.