Skip to content

Commit

Permalink
set maestro_cli version to 0.3.5 (#114)
Browse files Browse the repository at this point in the history
* set maestro_cli version to 0.3.5

* fix regex in flutter_driver
  • Loading branch information
bartekpacia authored Jul 19, 2022
1 parent 69b0665 commit 0c8fe88
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 5 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
.DS_Store
.idea

.flutter-plugins
.flutter-plugins-dependencies
2 changes: 1 addition & 1 deletion AutomatorServer/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ android {
minSdkVersion 26
targetSdkVersion 31
versionCode 1
versionName "0.3.4"
versionName "0.3.5"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ See README of [package:maestro_test][]
1. Create a [git annotated tag][annotated_tag]:

```
git tag -a "maestro_cli-v0.0.4" -m "Release notes go here"
git tag -a "maestro_cli-v0.3.4" -m "Release notes go here"
```

2. Push it! GitHub Actions will take care of the rest.
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.3.5

- Fix dependency resolution problem

## 0.3.4

- Improve output of `maestro drive`
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.3.4';
const version = '0.3.5';

const maestroPackage = 'maestro_test';
const maestroCliPackage = 'maestro_cli';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ Future<void> runWithOutput({

for (var text in lines) {
text = text.trim();
final regexp = RegExp(r'I\/flutter \([0-9]+\): ');
final regexp = RegExp(r'I\/flutter \(\s*[0-9]+\): ');
if (text.contains(regexp)) {
text = text.replaceFirst(regexp, '');
log.info(text);
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.3.4
version: 0.3.5
homepage: https://github.com/leancodepl/maestro

environment:
Expand Down

0 comments on commit 0c8fe88

Please sign in to comment.