From e9f6fdb2c3099177d4c67f34c89939d0d1507028 Mon Sep 17 00:00:00 2001 From: Kevin Moore Date: Wed, 20 May 2015 10:28:54 -0700 Subject: [PATCH 1/4] fix homepage --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index a1b19b9..c979723 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -4,7 +4,7 @@ author: Axel Christ description: |- Pub package to calculate coverage, format it to LCOV and send it to coveralls -homepage: https://github.com/Adracus/dart-coveralls +homepage: https://github.com/duse-io/dart-coveralls environment: sdk: '>=1.9.0 <2.0.0' dependencies: From 8cd62edcd1f2e00ce475ab2bb8fee701735c3948 Mon Sep 17 00:00:00 2001 From: Kevin Moore Date: Wed, 20 May 2015 10:34:01 -0700 Subject: [PATCH 2/4] dartfmt --- lib/src/cli_client.dart | 2 +- lib/src/git_data.dart | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/src/cli_client.dart b/lib/src/cli_client.dart index 8fe9333..d286473 100644 --- a/lib/src/cli_client.dart +++ b/lib/src/cli_client.dart @@ -78,7 +78,7 @@ class CommandLineClient { } Future _sendLoop(CoverallsEndpoint endpoint, String covString, - {int retry: 0}) async { + {int retry: 0}) async { while (true) { try { await endpoint.sendToCoveralls(covString); diff --git a/lib/src/git_data.dart b/lib/src/git_data.dart index 27ae95e..21a2453 100644 --- a/lib/src/git_data.dart +++ b/lib/src/git_data.dart @@ -131,8 +131,7 @@ class GitBranch { {ProcessSystem processSystem: const ProcessSystem(), Map environment}) { if (null == environment) environment = Platform.environment; - if (null != environment["CI_BRANCH"]) return environment[ - "CI_BRANCH"]; + if (null != environment["CI_BRANCH"]) return environment["CI_BRANCH"]; if (null != environment["TRAVIS_BRANCH"]) return environment[ "TRAVIS_BRANCH"]; var args = ["rev-parse", "--abbrev-ref", "HEAD"]; From b495c3b5c1d63da81b7d7153235b43e4717c28a0 Mon Sep 17 00:00:00 2001 From: Kevin Moore Date: Wed, 20 May 2015 10:34:23 -0700 Subject: [PATCH 3/4] Add CHANGELOG --- CHANGELOG.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..8fef8a0 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,9 @@ +### 0.1.12 + +* Support latest versions of `args` and `coverage` packages. + +* Require at least Dart 1.9.0 SDK. + +* Improved the reporting of errors, especially async errors. + +* Add check of `CI_BRANCH` environment variable for Git branch. From 35b305e45d29717c983a8afd5d0b2e55d7c398a6 Mon Sep 17 00:00:00 2001 From: Kevin Moore Date: Wed, 20 May 2015 10:35:41 -0700 Subject: [PATCH 4/4] bump version to 0.1.12 --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index c979723..e657e33 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: dart_coveralls -version: 0.1.12-dev +version: 0.1.12 author: Axel Christ description: |- Pub package to calculate coverage, format it