aboutsummaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorJorge Aparicio <jorge@japaric.io>2018-01-15 23:26:07 +0100
committerJorge Aparicio <jorge@japaric.io>2018-01-15 23:33:09 +0100
commitdef4fc8079dcb646ef3cab446a4b160e09e169bf (patch)
treec82e6f193e0bf9b842366e305056481d4d1666b2 /CHANGELOG.md
parent34edc41e9289e83468f68663a7f4a7f0f6cc2797 (diff)
v0.3.0
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md24
1 files changed, 23 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 405923b..c30ff4a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,27 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased]
+## [v0.3.0] - 2018-01-15
+
+### Added
+
+- [feat] `&'static mut` references can be safely created by assigning resources to `init`. See the
+ `init.resources` section of the `app!` macro documentation and the `safe-static-mut-ref` example
+ for details.
+
+### Changed
+
+- [breaking-change] svd2rust dependency has been bumped to v0.12.0
+
+- [breaking-change] resources assigned to tasks, or to idle, that were not declared in the top
+ `resources` field generate compiler errors. Before these were assumed to be peripherals, that's no
+ longer the case.
+
+- [breaking-change] the layout of `init::Peripherals` has changed. This struct now has two fields:
+ `core` and `device`. The value of the `core` field is a struct that owns all the core peripherals
+ of the device and the value of the `device` field is a struct that owns all the device specific
+ peripherals of the device.
+
## [v0.2.2] - 2017-11-22
### Added
@@ -56,7 +77,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Initial release
-[Unreleased]: https://github.com/japaric/cortex-m-rtfm/compare/v0.2.2...HEAD
+[Unreleased]: https://github.com/japaric/cortex-m-rtfm/compare/v0.3.0...HEAD
+[v0.3.0]: https://github.com/japaric/cortex-m-rtfm/compare/v0.2.2...v0.3.0
[v0.2.2]: https://github.com/japaric/cortex-m-rtfm/compare/v0.2.1...v0.2.2
[v0.2.1]: https://github.com/japaric/cortex-m-rtfm/compare/v0.2.0...v0.2.1
[v0.2.0]: https://github.com/japaric/cortex-m-rtfm/compare/v0.1.1...v0.2.0