From 6ce37c2cf2e1f81730c9b40859aefc5d466116aa Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Wed, 22 Nov 2017 00:19:46 +0100 Subject: [PATCH] v0.1.14 --- CHANGELOG.md | 14 ++++++++++++-- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 14 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ae059e6c..998167d34 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,16 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] -- Add support for the `i586-unknown-linux-gnu` target. +## [v0.1.14] - 2017-11-22 + +### Added + +- Support for the `i586-unknown-linux-gnu` target. + +### Changed + +- Downgraded the Solaris toolchains from 2.11 to 2.10 to make the binaries produced by Cross more + compatible (this version matches what rust-lang/rust is using). ## [v0.1.13] - 2017-11-08 @@ -187,7 +196,8 @@ This project adheres to [Semantic Versioning](http://semver.org/). - Initial release. Supports 12 targets. -[Unreleased]: https://github.com/japaric/cross/compare/v0.1.13...HEAD +[Unreleased]: https://github.com/japaric/cross/compare/v0.1.14...HEAD +[v0.1.14]: https://github.com/japaric/cross/compare/v0.1.13...v0.1.14 [v0.1.13]: https://github.com/japaric/cross/compare/v0.1.12...v0.1.13 [v0.1.12]: https://github.com/japaric/cross/compare/v0.1.11...v0.1.12 [v0.1.11]: https://github.com/japaric/cross/compare/v0.1.10...v0.1.11 diff --git a/Cargo.lock b/Cargo.lock index 2bfa86b60..64c526aec 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -28,7 +28,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "cross" -version = "0.1.14-dev" +version = "0.1.14" 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 607d99a45..3cccf3483 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.14-dev" +version = "0.1.14" [dependencies] error-chain = "0.7.1"