diff --git a/CHANGELOG.md b/CHANGELOG.md index cf1a195..6c784d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,17 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.3.3] - 2018-08-07 + +### Changed + +- Stopped recommending LLD as it requires an unstable feature. + +### Fixed + +- The allocator example. It now uses the `#[alloc_error_handler]` attribute + instead of the unstable `oom` lang item. + ## [v0.3.2] - 2018-06-19 ### Fixed @@ -178,7 +189,8 @@ This project adheres to [Semantic Versioning](http://semver.org/). - Initial release -[Unreleased]: https://github.com/japaric/cortex-m-quickstart/compare/v0.3.2...HEAD +[Unreleased]: https://github.com/japaric/cortex-m-quickstart/compare/v0.3.3...HEAD +[v0.3.3]: https://github.com/japaric/cortex-m-quickstart/compare/v0.3.2...v0.3.3 [v0.3.2]: https://github.com/japaric/cortex-m-quickstart/compare/v0.3.1...v0.3.2 [v0.3.1]: https://github.com/japaric/cortex-m-quickstart/compare/v0.3.0...v0.3.1 [v0.3.0]: https://github.com/japaric/cortex-m-quickstart/compare/v0.2.7...v0.3.0 diff --git a/Cargo.toml b/Cargo.toml index 4684ee2..a8c6f7e 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.3.2" +version = "0.3.3" [dependencies] cortex-m = "0.5.0"