From de912ac14911ce689c8c523c38553865bd8bbc4d Mon Sep 17 00:00:00 2001 From: Bartek Pacia Date: Wed, 1 Feb 2023 17:48:10 +0100 Subject: [PATCH] patrol_cli: bump version to 0.8.6 (#866) --- packages/patrol_cli/CHANGELOG.md | 11 +++++++++++ packages/patrol_cli/lib/src/common/constants.dart | 2 +- packages/patrol_cli/pubspec.yaml | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/packages/patrol_cli/CHANGELOG.md b/packages/patrol_cli/CHANGELOG.md index 5925786b2..971fb8d0b 100644 --- a/packages/patrol_cli/CHANGELOG.md +++ b/packages/patrol_cli/CHANGELOG.md @@ -1,3 +1,14 @@ +## 0.8.6 + +- Uninstall app under test after `patrol test` (#848) + + This currently requires package name (on Android) and bundle identifier (on + iOS) to be passed through respective arguments to `patrol test`. Soon it'll + also be possible to define these values in `pubspec.yaml. + +- Print helpful links when called without arguments (#865) +- Fix verbose output from Gradle having garbled newlines (#858) + ## 0.8.5 - Add a deprecation warning to `patrol drive` command (#833) diff --git a/packages/patrol_cli/lib/src/common/constants.dart b/packages/patrol_cli/lib/src/common/constants.dart index da8de5d66..6b92298e4 100644 --- a/packages/patrol_cli/lib/src/common/constants.dart +++ b/packages/patrol_cli/lib/src/common/constants.dart @@ -1,7 +1,7 @@ import 'package:path/path.dart' as path; /// Version of Patrol CLI. Must be kept in sync with pubspec.yaml. -const globalVersion = '0.8.5'; +const globalVersion = '0.8.6'; const patrolPackage = 'patrol'; const patrolCliPackage = 'patrol_cli'; diff --git a/packages/patrol_cli/pubspec.yaml b/packages/patrol_cli/pubspec.yaml index 3a11362eb..13c6cf8c6 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: 0.8.5 +version: 0.8.6 homepage: https://patrol.leancode.co repository: https://github.com/leancodepl/patrol issue_tracker: https://github.com/leancodepl/patrol/issues