diff --git a/CHANGELOG.md b/CHANGELOG.md index 92b4ab7..f7da036 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 2.1.5 +- `reportOnly` option + ## 2.1.4 - Document maintenance mode status in README - Bump dependencies: args 2.7.0, file 7.0.1, glob 2.1.3, yaml 3.1.3, path 1.9.1 diff --git a/integration_test/shared/persistent_output_generator.dart b/integration_test/shared/persistent_output_generator.dart index bc3c88e..2570e7c 100644 --- a/integration_test/shared/persistent_output_generator.dart +++ b/integration_test/shared/persistent_output_generator.dart @@ -15,4 +15,7 @@ class PersistentOutputGenerator implements OutputGenerator { Future terminate(AnalysisResult analysisResult) async { this.analysisResult = analysisResult; } + + @override + bool get reportOnly => false; } diff --git a/pubspec.yaml b/pubspec.yaml index 7decabd..3936b5a 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: pull_request_coverage description: "A diff coverage tool. It provides a clear and achievable standard for code review: If you touch a line of code, that line should be covered." repository: https://github.com/talesbarreto/pull_request_coverage -version: 2.1.4 +version: 2.1.5 topics: - test - coverage