From 609e2ae9ff6b090fad2cb35d9f8088c3e725c762 Mon Sep 17 00:00:00 2001 From: Tom Hu Date: Fri, 13 Nov 2020 12:35:54 -0500 Subject: [PATCH 1/3] Get to a publish state --- CHANGELOG.md | 4 ++++ pubspec.yaml | 8 +++----- 2 files changed, 7 insertions(+), 5 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..2a73886 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,4 @@ +## 1.0.0 + +- [#21](https://github.com/codecov/dart/pull/22) Rename from dart_codecov_generator to codecov +- [#17](https://github.com/codecov/dart/pull/17) Bring project back to a passing state diff --git a/pubspec.yaml b/pubspec.yaml index edb3cbc..1e2c20f 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,15 +1,13 @@ name: codecov version: 1.0.0 description: Generates lcov and/or HTML coverage reports for Dart projects. (UNIX only) -authors: - - John Ryan - - Evan Weible - - Thomas Hu homepage: https://github.com/codecov/dart dependencies: args: "^1.5.0" logging: ">=0.9.0 <0.12.0" - path: ">=1.6.3" + path: "^1.6.3" +environment: + sdk: ">=2.0.0 <2.11.0" dev_dependencies: coverage: "0.13.11" test: "1.12.0" From b846b801f488d505b700fc809bacdd98a93fadab Mon Sep 17 00:00:00 2001 From: Tom Hu Date: Fri, 13 Nov 2020 15:46:28 -0500 Subject: [PATCH 2/3] Allow 2.12 --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 1e2c20f..3899741 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -7,7 +7,7 @@ dependencies: logging: ">=0.9.0 <0.12.0" path: "^1.6.3" environment: - sdk: ">=2.0.0 <2.11.0" + sdk: ">=2.0.0 <2.13.0" dev_dependencies: coverage: "0.13.11" test: "1.12.0" From 0954f5021ed23196600980f3de981100fb7ae38c Mon Sep 17 00:00:00 2001 From: Tom Hu Date: Sun, 15 Nov 2020 12:40:35 -0500 Subject: [PATCH 3/3] Disallow 2.12 --- .travis.yml | 1 - pubspec.yaml | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index bd0daf0..871431e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,6 @@ language: dart dart: - stable - - beta - "2.10.3" - "2.9.3" - "2.8.4" diff --git a/pubspec.yaml b/pubspec.yaml index 3899741..1e2c20f 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -7,7 +7,7 @@ dependencies: logging: ">=0.9.0 <0.12.0" path: "^1.6.3" environment: - sdk: ">=2.0.0 <2.13.0" + sdk: ">=2.0.0 <2.11.0" dev_dependencies: coverage: "0.13.11" test: "1.12.0"