From 7644989dcc68763a6710f22ac3816ec47f24e392 Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Wed, 6 Sep 2017 11:24:25 +0200 Subject: [PATCH] v0.3.9 --- CHANGELOG.md | 15 +++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 67a29b4..84ec2b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,21 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.3.9] - 2017-09-06 + +### Added + +- Use Cargo.lock from the `rust-src` component if available. With this change + the Xargo sysroot will be built using the exact same set of dependencies that + the official sysroot distributed via rustup uses. + +- The `RUSTFLAGS` variable internally used by Xargo is now printed when verbose + (`-v`) mode is enabled. + +### Changed + +- Updated the documentation about building `std` with recent nightlies. + ## [v0.3.8] - 2017-05-30 ### Changed diff --git a/Cargo.lock b/Cargo.lock index a1608a7..c7f77d9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ [root] name = "xargo" -version = "0.3.8" +version = "0.3.9" 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 816950a..8df368b 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.8" +version = "0.3.9" [dependencies] error-chain = "0.7.2"