From 78cb2954bcb34972ff60619e818ae2272ba7e6fe Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Sat, 10 Jun 2017 20:29:24 -0500 Subject: [PATCH] v0.1.11 --- CHANGELOG.md | 22 +++++++++++++++++++++- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 23 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6de91895a..7f6e838f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,24 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.1.11] - 2017-06-10 + +### Added + +- Build and test support for `i686-pc-windows-gnu`, `x86_64-pc-windows-gnu`, + `asmjs-unknown-emscripten` and `wasm-unknown-emscripten`. + +- Build support for `aarch64-linux-android`, `arm-linux-androideabi`, + `armv7-linux-androideabi`, `x86_64-linux-android` and `i686-linux-android` + +- A `build.env.passthrough` / `build.target.*.passthrough` option to Cross.toml + to support passing environment variables from the host to the Docker image. + +### Changed + +- Bumped OpenSSL version to 1.0.2k +- Bumped QEMU version to 2.9.0 + ## [v0.1.10] - 2017-04-02 ### Added @@ -135,7 +153,9 @@ This project adheres to [Semantic Versioning](http://semver.org/). - Initial release. Supports 12 targets. -[Unreleased]: https://github.com/japaric/cross/compare/v0.1.9...HEAD +[Unreleased]: https://github.com/japaric/cross/compare/v0.1.11...HEAD +[v0.1.11]: https://github.com/japaric/cross/compare/v0.1.10...v0.1.11 +[v0.1.10]: https://github.com/japaric/cross/compare/v0.1.9...v0.1.10 [v0.1.9]: https://github.com/japaric/cross/compare/v0.1.8...v0.1.9 [v0.1.8]: https://github.com/japaric/cross/compare/v0.1.7...v0.1.8 [v0.1.7]: https://github.com/japaric/cross/compare/v0.1.6...v0.1.7 diff --git a/Cargo.lock b/Cargo.lock index 9fe96a0eb..7ecc6544a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ [root] name = "cross" -version = "0.1.11-dev" +version = "0.1.11" dependencies = [ "error-chain 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 96e433536..80942574e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ keywords = ["cross", "compilation", "testing", "tool"] license = "MIT OR Apache-2.0" name = "cross" repository = "https://github.com/japaric/cross" -version = "0.1.11-dev" +version = "0.1.11" [dependencies] error-chain = "0.7.1"