Skip to content

Commit

Permalink
Merge pull request #31 from kevmoo/release
Browse files Browse the repository at this point in the history
Prepare for 0.1.12 release
  • Loading branch information
adracus committed May 20, 2015
2 parents 9ef0775 + 35b305e commit 74e9d97
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
2 changes: 1 addition & 1 deletion lib/src/cli_client.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
3 changes: 1 addition & 2 deletions lib/src/git_data.dart
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,7 @@ class GitBranch {
{ProcessSystem processSystem: const ProcessSystem(),
Map<String, String> 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"];
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: dart_coveralls
version: 0.1.12-dev
version: 0.1.12
author: Axel Christ <adracus@gmail.com>
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:
Expand Down

0 comments on commit 74e9d97

Please sign in to comment.