Skip to content

Commit

Permalink
release v0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Jorge Aparicio committed Dec 31, 2016
1 parent a0dfd1d commit 4f8e37a
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 5 deletions.
13 changes: 11 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [v0.3.1] - 2016-12-30

### Added

- You can now specify the location where Xargo stores the sysroots via the
`XARGO_HOME` environment variable. If unspecified, the sysroots will be stored
in `$HOME/.xargo`

## [v0.3.0] - 2016-12-28

### Changed
Expand Down Expand Up @@ -193,8 +201,9 @@ This project adheres to [Semantic Versioning](http://semver.org/).

- Initial release

[Unreleased]: https://github.com/japaric/xargo/compare/v0.3.0...HEAD
[v0.3.0]: https://github.com/japaric/xargo/compare/v0.2.2...v0.3.0
[Unreleased]: https://github.com/japaric/xargo/compare/v0.3.1...HEAD
[v0.3.1]: https://github.com/japaric/xargo/compare/v0.3.0...v0.3.1
[v0.3.0]: https://github.com/japaric/xargo/compare/v0.2.3...v0.3.0
[v0.2.3]: https://github.com/japaric/xargo/compare/v0.2.2...v0.2.3
[v0.2.2]: https://github.com/japaric/xargo/compare/v0.2.1...v0.2.2
[v0.2.1]: https://github.com/japaric/xargo/compare/v0.2.0...v0.2.1
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ keywords = ["cli", "cross", "compilation", "std"]
license = "MIT OR Apache-2.0"
name = "xargo"
repository = "https://github.com/japaric/xargo"
version = "0.3.0"
version = "0.3.1"

[dependencies]
error-chain = "0.7.2"
Expand Down
4 changes: 3 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,9 @@ fn run() -> Result<ExitStatus> {
let src = match meta.channel {
Channel::Dev => rustc::Src::from_env()?,
Channel::Nightly => sysroot.src()?,
Channel::Stable | Channel::Beta => return cargo::run(&args, verbose),
Channel::Stable | Channel::Beta => {
return cargo::run(&args, verbose)
}
};

let target = if let Some(triple) = args.target() {
Expand Down

0 comments on commit 4f8e37a

Please sign in to comment.