diff --git a/CHANGELOG.md b/CHANGELOG.md index df77d3b..06ee3fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,14 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] -## v0.1.4 - 2017-05-13 +## [v0.1.5] - 2017-05-16 + +### Added + +- A warning about using CARGO_INCREMENTAL to the how to use and the + troubleshooting sections. + +## [v0.1.4] - 2017-05-13 ### Added @@ -15,7 +22,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). - Extend troubleshooting section -## v0.1.3 - 2017-05-13 +## [v0.1.3] - 2017-05-13 ### Added @@ -25,13 +32,13 @@ This project adheres to [Semantic Versioning](http://semver.org/). - Bumped the cortex-m crate version to v0.2.6 -## v0.1.2 - 2017-05-07 +## [v0.1.2] - 2017-05-07 ### Fixed - .gdbinit: jump to reset handler after loading the program. -## v0.1.1 - 2017-04-27 +## [v0.1.1] - 2017-04-27 ### Changed @@ -43,7 +50,8 @@ This project adheres to [Semantic Versioning](http://semver.org/). - Initial release -[Unreleased]: https://github.com/japaric/cortex-m-quickstart/compare/v0.1.4...HEAD +[Unreleased]: https://github.com/japaric/cortex-m-quickstart/compare/v0.1.5...HEAD +[v0.1.5]: https://github.com/japaric/cortex-m-quickstart/compare/v0.1.4...v0.1.5 [v0.1.4]: https://github.com/japaric/cortex-m-quickstart/compare/v0.1.3...v0.1.4 [v0.1.3]: https://github.com/japaric/cortex-m-quickstart/compare/v0.1.2...v0.1.3 [v0.1.2]: https://github.com/japaric/cortex-m-quickstart/compare/v0.1.1...v0.1.2 diff --git a/Cargo.toml b/Cargo.toml index 68e53a0..c3ccea7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ keywords = ["arm", "cortex-m", "template"] license = "MIT OR Apache-2.0" name = "cortex-m-quickstart" repository = "https://github.com/japaric/cortex-m-quickstart" -version = "0.1.4" +version = "0.1.5" [dependencies] cortex-m = "0.2.6"