Skip to content

Commit

Permalink
Auto-merge for PR #67 via VersionBot
Browse files Browse the repository at this point in the history
Improved Travis CI config
  • Loading branch information
resin-io-modules-versionbot[bot] authored May 31, 2017
2 parents 61d4637 + daa584b commit df801fe
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ before_install:
- sudo apt-get -qq update
- sudo apt-get install -yq --no-install-recommends libdbus-1-dev
install:
- (cargo install rustfmt --force || true)
- PATH=$PATH:/home/travis/.cargo/bin
- cargo install rustfmt || true
- if [[ $TRAVIS_RUST_VERSION == "nightly" ]]; then cargo install clippy || true; fi
script:
- cargo clean
- cargo fmt -- --write-mode=diff
- ((test $TRAVIS_RUST_VERSION == "nightly" && cargo build --features "clippy") || true)
- if [[ $TRAVIS_RUST_VERSION == "nightly" ]]; then cargo clippy -- -D warnings; fi
- cargo build --verbose
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file
automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY!
This project adheres to [Semantic Versioning](http://semver.org/).

## v0.2.3 - 2017-05-31

* Treat clippy warnings as errors [majorz]

## v0.2.2 - 2017-05-30

* Logging in critical places of the library [majorz]
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "network_manager"
version = "0.2.2"
version = "0.2.3"
authors = ["Joseph Roberts <[email protected]>", "Zahari Petkov <[email protected]>"]

[dependencies]
Expand Down

0 comments on commit df801fe

Please sign in to comment.