From a41f465b4baee8edf48d4a5316816f9c6757b07f Mon Sep 17 00:00:00 2001 From: Felix Angelov Date: Wed, 15 Jun 2022 17:12:25 -0500 Subject: [PATCH] chore: v0.7.7 --- CHANGELOG.md | 9 ++++++++- lib/src/commands/test/test.dart | 10 +++++----- lib/src/version.dart | 2 +- pubspec.yaml | 2 +- test/src/commands/test/test_test.dart | 2 +- 5 files changed, 16 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0923187e..33e71ced 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,11 @@ -# [0.7.6](https://github.com/VeryGoodOpenSource/very_good_cli/compare/v0.7.5...v0.7.6) (2022-06-06) +# [0.7.7](https://github.com/VeryGoodOpenSource/very_good_cli/compare/v0.7.6...v0.7.7) (2022-06-15) + +### Features + +- **create:** upgrade templates to very_good_analysis v3.0.1 ([#429](https://github.com/VeryGoodOpenSource/very_good_cli/issues/429)) ([0daf130](https://github.com/VeryGoodOpenSource/very_good_cli/commit/0daf13092a94de0d4a7b5e8f158a244ed36e0f08)) +- **test:** support --tags option ([#421](https://github.com/VeryGoodOpenSource/very_good_cli/issues/421)) ([f84d488](https://github.com/VeryGoodOpenSource/very_good_cli/commit/f84d488d32c41a4deb25ce84cc55a30b3bbfdac2)) + +## [0.7.6](https://github.com/VeryGoodOpenSource/very_good_cli/compare/v0.7.5...v0.7.6) (2022-06-06) ### Bug Fixes diff --git a/lib/src/commands/test/test.dart b/lib/src/commands/test/test.dart index 630181b3..b07d7c11 100644 --- a/lib/src/commands/test/test.dart +++ b/lib/src/commands/test/test.dart @@ -50,11 +50,6 @@ class TestCommand extends Command { help: 'Run tests recursively for all nested packages.', negatable: false, ) - ..addOption( - 'tags', - abbr: 't', - help: 'Run only tests associated with the specified tags.', - ) ..addFlag( 'optimization', defaultsTo: true, @@ -66,6 +61,11 @@ class TestCommand extends Command { defaultsTo: '4', help: 'The number of concurrent test suites run.', ) + ..addOption( + 'tags', + abbr: 't', + help: 'Run only tests associated with the specified tags.', + ) ..addOption( 'exclude-coverage', help: 'A glob which will be used to exclude files that match from the ' diff --git a/lib/src/version.dart b/lib/src/version.dart index a326591f..ed2260cc 100644 --- a/lib/src/version.dart +++ b/lib/src/version.dart @@ -1,2 +1,2 @@ // Generated code. Do not modify. -const packageVersion = '0.7.6'; +const packageVersion = '0.7.7'; diff --git a/pubspec.yaml b/pubspec.yaml index 77d05b5f..91ae1d69 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: very_good_cli description: A Very Good Command Line Interface for Dart created by Very Good Ventures. -version: 0.7.6 +version: 0.7.7 homepage: https://github.com/VeryGoodOpenSource/very_good_cli environment: diff --git a/test/src/commands/test/test_test.dart b/test/src/commands/test/test_test.dart index 3c6c5dc7..f8d827b1 100644 --- a/test/src/commands/test/test_test.dart +++ b/test/src/commands/test/test_test.dart @@ -17,11 +17,11 @@ const expectedTestUsage = [ '-h, --help Print this usage information.\n' ''' --coverage Whether to collect coverage information.\n''' '''-r, --recursive Run tests recursively for all nested packages.\n''' - '''-t, --tags Run only tests associated with the specified tags.\n''' ''' --[no-]optimization Whether to apply optimizations for test performance.\n''' ' (defaults to on)\n' '''-j, --concurrency The number of concurrent test suites run.\n''' ' (defaults to "4")\n' + '''-t, --tags Run only tests associated with the specified tags.\n''' ''' --exclude-coverage A glob which will be used to exclude files that match from the coverage.\n''' '''-x, --exclude-tags Run only tests that do not have the specified tags.\n''' ''' --min-coverage Whether to enforce a minimum coverage percentage.\n'''