Skip to content

Commit

Permalink
Auto-merge for PR #79 via VersionBot
Browse files Browse the repository at this point in the history
Keeping binary crates updated in Travis
  • Loading branch information
resin-io-modules-versionbot[bot] authored Jun 15, 2017
2 parents 28ba008 + c5a0dd0 commit 2beb0ab
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 12 deletions.
27 changes: 16 additions & 11 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,22 @@ sudo: required
language: rust
cache: cargo
rust:
- nightly
- beta
- stable
- nightly
- beta
- stable
before_install:
- sudo apt-get -qq update
- sudo apt-get install -yq --no-install-recommends libdbus-1-dev
- sudo apt-get -qq update
- sudo apt-get install -yq --no-install-recommends libdbus-1-dev
install:
- cargo install rustfmt || true
- if [[ $TRAVIS_RUST_VERSION == "nightly" ]]; then cargo install clippy || true; fi
- type -p cargo-install-update || cargo install cargo-update
- cargo install-update -i cargo-update
- cargo install-update -i rustfmt
- if [ $TRAVIS_RUST_VERSION == nightly ]; then
cargo install-update -i clippy;
fi
script:
- cargo clean
- cargo fmt -- --write-mode=diff
- if [[ $TRAVIS_RUST_VERSION == "nightly" ]]; then cargo clippy -- -D warnings; fi
- cargo build --verbose
- cargo fmt -- --write-mode=diff
- if [ $TRAVIS_RUST_VERSION == nightly ]; then
cargo clippy -- -D warnings;
fi
- cargo build
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.3.2 - 2017-06-15

* Keeping binary crates updated in Travis [majorz]

## v0.3.1 - 2017-06-15

* VersionBot config update for automatic Cargo.toml version bump [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.3.1"
version = "0.3.2"
authors = ["Joseph Roberts <[email protected]>", "Zahari Petkov <[email protected]>"]

[dependencies]
Expand Down

0 comments on commit 2beb0ab

Please sign in to comment.