Skip to content

Commit

Permalink
* hotfix flutter_driver.runTestsWithOutput
Browse files Browse the repository at this point in the history
* bump version to v0.0.8
  • Loading branch information
bartekpacia committed Jun 6, 2022
1 parent 9bb8671 commit c3fd3ad
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion AutomatorServer/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ android {
minSdkVersion 26
targetSdkVersion 32
versionCode 1
versionName "0.0.7"
versionName "0.0.8"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
4 changes: 4 additions & 0 deletions packages/maestro_cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.0.8

- Fix `maestro drive` on Windows crashing with ProcessException.

## 0.0.7

- Fix a few bugs.
Expand Down
2 changes: 1 addition & 1 deletion packages/maestro_cli/lib/src/common/constants.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// Version of Maestro CLI. Must be kept in sync with pubspec.yaml.
const version = '0.0.7';
const version = '0.0.8';

const maestroPackage = 'maestro_test';
const maestroCliPackage = 'maestro_cli';
Expand Down
1 change: 1 addition & 0 deletions packages/maestro_cli/lib/src/external/flutter_driver.dart
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ Future<void> runTestsWithOutput(String driver, String target) async {
'--target',
target,
],
runInShell: true,
);

final sub = res.stdout.listen((msg) {
Expand Down
2 changes: 1 addition & 1 deletion packages/maestro_cli/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: maestro_cli
description: CLI for Maestro.
version: 0.0.7
version: 0.0.8
homepage: https://github.com/leancodepl/maestro

environment:
Expand Down

0 comments on commit c3fd3ad

Please sign in to comment.