From d95614f11e16c890d99fd40935103aeb8b930bfa Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Thu, 28 Dec 2017 02:25:45 +0100 Subject: [PATCH] v0.3.10 --- CHANGELOG.md | 20 +++++++++++++++++++- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 21 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 84ec2b1..0734c9a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,22 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.3.10] - 2017-12-28 + +### Added + +- Print a warning when the stable or beta toolchain, which are not supported, is used. + +### Changed + +- Set RUST_TARGET_PATH when building the sysroot. This fixes builds when using custom targets with a + recent toolchain. + +### Removed + +- The lock file included in the rust-src component is no longer used when building the sysroot. This + fixes building a sysroot that contains the compiler-builtins crate. + ## [v0.3.9] - 2017-09-06 ### Added @@ -293,7 +309,9 @@ stage = 1 - Initial release -[Unreleased]: https://github.com/japaric/xargo/compare/v0.3.8...HEAD +[Unreleased]: https://github.com/japaric/xargo/compare/v0.3.10...HEAD +[v0.3.10]: https://github.com/japaric/xargo/compare/v0.3.9...v0.3.10 +[v0.3.9]: https://github.com/japaric/xargo/compare/v0.3.8...v0.3.9 [v0.3.8]: https://github.com/japaric/xargo/compare/v0.3.7...v0.3.8 [v0.3.7]: https://github.com/japaric/xargo/compare/v0.3.6...v0.3.7 [v0.3.6]: https://github.com/japaric/xargo/compare/v0.3.5...v0.3.6 diff --git a/Cargo.lock b/Cargo.lock index e3e2cfb..f84f7b4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -223,7 +223,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "xargo" -version = "0.3.9" +version = "0.3.10" dependencies = [ "error-chain 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "fs2 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 3afedde..c40bd58 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ keywords = ["cli", "cross", "compilation", "std"] license = "MIT OR Apache-2.0" name = "xargo" repository = "https://github.com/japaric/xargo" -version = "0.3.9" +version = "0.3.10" [dependencies] error-chain = "0.7.2"