Skip to content

Commit

Permalink
Prepare changelogs (#2377)
Browse files Browse the repository at this point in the history
* Prepare changelogs

* Update compatibility table

---------

Co-authored-by: piotruela <[email protected]>
  • Loading branch information
piotruela and piotruela authored Oct 21, 2024
1 parent 9f04057 commit bb44af6
Show file tree
Hide file tree
Showing 12 changed files with 31 additions and 8 deletions.
5 changes: 3 additions & 2 deletions docs/compatibility-table.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down
4 changes: 4 additions & 0 deletions packages/adb/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.4.1

- Bump minimum Dart SDK to version 3.5.0 (#2371)

## 0.4.0

- Add `getForwardedPorts` method to `Adb` (#2332)
Expand Down
2 changes: 1 addition & 1 deletion packages/adb/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: adb
description: Simple Dart wrapper around Android Debug Bridge.
version: 0.4.0
version: 0.4.1
repository: https://github.com/leancodepl/patrol/tree/master/packages/adb
issue_tracker: https://github.com/leancodepl/patrol/issues?q=is%3Aopen+is%3Aissue+label%3A%22package%3A+adb%22

Expand Down
4 changes: 4 additions & 0 deletions packages/patrol/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 3.11.2

- Bump min Flutter SDK to 3.24.0 and Dart SDK to 3.5.0 (#2371)

## 3.11.1

- Replace whitespace in test case name in `PatrolJUnitRunner.java`. (#2361)
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.11.1
version: 3.11.2
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
3 changes: 2 additions & 1 deletion packages/patrol_cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## Unreleased
## 3.2.1

- Allow running Patrol tests from any subfolder of the project (#2351)
- Bump min Flutter SDK to 3.24.0 and Dart SDK to 3.5.0 (#2371)

## 3.2.0

Expand Down
2 changes: 1 addition & 1 deletion packages/patrol_cli/lib/src/base/constants.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
/// Version of Patrol CLI. Must be kept in sync with pubspec.yaml.
/// If you update this, make sure that compatibility-table.mdx is updated (if needed)
const version = '3.2.0';
const version = '3.2.1';
Original file line number Diff line number Diff line change
Expand Up @@ -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'),
),
];

Expand Down Expand Up @@ -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'),
),
];
2 changes: 1 addition & 1 deletion packages/patrol_cli/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: patrol_cli
description: >
Command-line tool for Patrol, a powerful Flutter-native UI testing framework.
version: 3.2.0 # Must be kept in sync with constants.dart
version: 3.2.1 # Must be kept in sync with constants.dart
homepage: https://patrol.leancode.co
repository: https://github.com/leancodepl/patrol/tree/master/packages/patrol_cli
issue_tracker: https://github.com/leancodepl/patrol/issues?q=is%3Aopen+is%3Aissue+label%3A%22package%3A+patrol_cli%22
Expand Down
1 change: 1 addition & 0 deletions packages/patrol_devtools_extension/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@

- Make details view panel scrollable when content overflows (#2358)
- Copy selector arguments with single quote (#2358)
- Bump min Flutter SDK to 3.24.0 and Dart SDK to 3.5.0 (#2371)
4 changes: 4 additions & 0 deletions packages/patrol_finders/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2.1.3

- Bump min Flutter SDK to 3.24.0 and Dart SDK to 3.5.0 (#2371)

## 2.1.2

- Adjust `pumpWidget` to new `flutter_test` API.
Expand Down
2 changes: 1 addition & 1 deletion packages/patrol_finders/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: patrol_finders
description: Streamlined, high-level API on top of flutter_test.
version: 2.1.2
version: 2.1.3
homepage: https://patrol.leancode.co
repository: https://github.com/leancodepl/patrol/tree/master/packages/patrol_finders
issue_tracker: https://github.com/leancodepl/patrol/issues?q=is%3Aopen+is%3Aissue+label%3Apackage%3Apatrol_finders
Expand Down

0 comments on commit bb44af6

Please sign in to comment.