diff --git a/AutomatorServer/app/build.gradle b/AutomatorServer/app/build.gradle index a0d8b4641..f9867f0b2 100644 --- a/AutomatorServer/app/build.gradle +++ b/AutomatorServer/app/build.gradle @@ -13,7 +13,7 @@ android { minSdkVersion 26 targetSdkVersion 32 versionCode 1 - versionName "0.0.7" + versionName "0.0.8" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } diff --git a/packages/maestro_cli/CHANGELOG.md b/packages/maestro_cli/CHANGELOG.md index 047125c7d..081e45bcb 100644 --- a/packages/maestro_cli/CHANGELOG.md +++ b/packages/maestro_cli/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.0.8 + +- Fix `maestro drive` on Windows crashing with ProcessException. + ## 0.0.7 - Fix a few bugs. diff --git a/packages/maestro_cli/lib/src/common/constants.dart b/packages/maestro_cli/lib/src/common/constants.dart index 76c2790cf..37444d099 100644 --- a/packages/maestro_cli/lib/src/common/constants.dart +++ b/packages/maestro_cli/lib/src/common/constants.dart @@ -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'; diff --git a/packages/maestro_cli/lib/src/external/flutter_driver.dart b/packages/maestro_cli/lib/src/external/flutter_driver.dart index 17d2295a8..7324116af 100644 --- a/packages/maestro_cli/lib/src/external/flutter_driver.dart +++ b/packages/maestro_cli/lib/src/external/flutter_driver.dart @@ -40,6 +40,7 @@ Future runTestsWithOutput(String driver, String target) async { '--target', target, ], + runInShell: true, ); final sub = res.stdout.listen((msg) { diff --git a/packages/maestro_cli/pubspec.yaml b/packages/maestro_cli/pubspec.yaml index 3a1664767..c99cacf9e 100644 --- a/packages/maestro_cli/pubspec.yaml +++ b/packages/maestro_cli/pubspec.yaml @@ -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: