diff --git a/packages/patrol/CHANGELOG.md b/packages/patrol/CHANGELOG.md index 647d9d910..399acf4ff 100644 --- a/packages/patrol/CHANGELOG.md +++ b/packages/patrol/CHANGELOG.md @@ -1,11 +1,11 @@ -## Unreleased +## 3.3.0 +- Enable selecting individual tests with `xcodebuild`'s `-only-testing` option. + Currently iOS only, does not support macOS (#2001) - Fix being unable to interact with the running app during testing with a finger (#2008) - Fix non-ASCII characters displaying as gibberish in Patrol's DevTools extension (#2010) -- Enable selecting individual tests with `xcodebuild`'s `-only-testing` option - (#2001) - Fix Dart-side crash in test causing test suite to hang on iOS (#2013) ## 3.2.0 diff --git a/packages/patrol/pubspec.yaml b/packages/patrol/pubspec.yaml index d3c4f217a..1061623d6 100644 --- a/packages/patrol/pubspec.yaml +++ b/packages/patrol/pubspec.yaml @@ -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.2.0 +version: 3.3.0 homepage: https://patrol.leancode.co repository: https://github.com/leancodepl/patrol/tree/master/packages/patrol issue_tracker: https://github.com/leancodepl/patrol/issues diff --git a/packages/patrol_cli/CHANGELOG.md b/packages/patrol_cli/CHANGELOG.md index 31c180036..839a72a5f 100644 --- a/packages/patrol_cli/CHANGELOG.md +++ b/packages/patrol_cli/CHANGELOG.md @@ -1,6 +1,6 @@ -## Unreleased +## 2.5.0 -- Allow defining custom test file suffix (#2009) +- Allow for defining a custom test file suffix (#2009) - Fix opening devtools on Windows (#2011) ## 2.4.0 diff --git a/packages/patrol_cli/lib/src/base/constants.dart b/packages/patrol_cli/lib/src/base/constants.dart index 489cab901..df27a48ae 100644 --- a/packages/patrol_cli/lib/src/base/constants.dart +++ b/packages/patrol_cli/lib/src/base/constants.dart @@ -1,2 +1,2 @@ /// Version of Patrol CLI. Must be kept in sync with pubspec.yaml. -const version = '2.4.0'; +const version = '2.5.0'; diff --git a/packages/patrol_cli/pubspec.yaml b/packages/patrol_cli/pubspec.yaml index dd4e4deb2..80bd83a9f 100644 --- a/packages/patrol_cli/pubspec.yaml +++ b/packages/patrol_cli/pubspec.yaml @@ -1,7 +1,7 @@ name: patrol_cli description: > Command-line tool for Patrol, a powerful Flutter-native UI testing framework. -version: 2.4.0 # Must be kept in sync with constants.dart +version: 2.5.0 # 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