diff --git a/CHANGELOG.md b/CHANGELOG.md index 7f6e838f8..67f90d134 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,18 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.1.12] - 2017-09-22 + +### Added + +- Support for `cross check`. This subcommand won't use any Docker container. + +### Changed + +- `binfmt_misc` is not required on the host for toolchain v1.19.0 and newer. + With these toolchains `binfmt_misc` interpreters don't need to be installed + on the host saving a *privileged* docker run which some systems don't allow. + ## [v0.1.11] - 2017-06-10 ### Added @@ -153,7 +165,8 @@ This project adheres to [Semantic Versioning](http://semver.org/). - Initial release. Supports 12 targets. -[Unreleased]: https://github.com/japaric/cross/compare/v0.1.11...HEAD +[Unreleased]: https://github.com/japaric/cross/compare/v0.1.12...HEAD +[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 [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 diff --git a/Cargo.lock b/Cargo.lock index 9ff1a5df1..b6e6d5f89 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ [root] name = "cross" -version = "0.1.12-dev" +version = "0.1.12" 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 599b72a89..4def2a58a 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.12-dev" +version = "0.1.12" [dependencies] error-chain = "0.7.1"