From 1114b3d2dd3be38a562dbdbe76fda1592120f370 Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Wed, 28 Sep 2016 12:06:18 -0500 Subject: [PATCH] release v0.1.10 --- CHANGELOG.md | 13 ++++++++----- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 10 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b782b8..538c419 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,13 +5,15 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.1.10] - 2016-09-28 + ### Fixed - `xargo doc`, which wasn't working because we didn't pass --sysroot to rustdoc. Note that rustdoc gained support for '--sysroot' as of nightly-2016-06-28, so that version or newer is required to use `xargo doc`. -## [v0.1.9] +## [v0.1.9] - 2016-09-27 ### Fixed @@ -20,7 +22,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). place the host libraries in the Xargo sysroot and instead just copy them. This is a regression in disk usage but this problem was coming up in common Docker usage patterns (-v A:B). -## [v0.1.8] +## [v0.1.8] - 2016-09-04 ### Changed @@ -34,13 +36,13 @@ This project adheres to [Semantic Versioning](http://semver.org/). its profiles, then the sysroot will also be compiled with `-C panic=abort`. Previously, this wasn't the case. -## [v0.1.7] +## [v0.1.7] - 2016-09-03 ### Fixed - The sysroot now gets rebuilt when rust-src changes. -## [v0.1.6] +## [v0.1.6] - 2016-08-29 ### Added @@ -90,7 +92,8 @@ to *always* trigger a sysroot rebuild. - Initial release -[Unreleased]: https://github.com/japaric/xargo/compare/v0.1.9...HEAD +[Unreleased]: https://github.com/japaric/xargo/compare/v0.1.10...HEAD +[v0.1.9]: https://github.com/japaric/xargo/compare/v0.1.9...v0.1.10 [v0.1.9]: https://github.com/japaric/xargo/compare/v0.1.8...v0.1.9 [v0.1.8]: https://github.com/japaric/xargo/compare/v0.1.7...v0.1.8 [v0.1.7]: https://github.com/japaric/xargo/compare/v0.1.6...v0.1.7 diff --git a/Cargo.lock b/Cargo.lock index b8fb52e..ef9b7f7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ [root] name = "xargo" -version = "0.1.9" +version = "0.1.10" dependencies = [ "cargo 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", "chrono 0.2.25 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index e88b76b..0e94acc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ keywords = ["cli", "cross", "compilation", "custom", "target"] license = "MIT OR Apache-2.0" name = "xargo" repository = "https://github.com/japaric/xargo" -version = "0.1.9" +version = "0.1.10" [dependencies] cargo = "0.10.0"