aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Jonas Schievink <jonasschievink@gmail.com> 2019-11-21 23:09:47 +0100
committerGravatar Jonas Schievink <jonasschievink@gmail.com> 2019-11-21 23:09:47 +0100
commitb7e6d2121d105d9f6a1956fa1eba63871a795735 (patch)
tree943c32a528de136c3c8255916fa7383b7b768a83
parentc147d2f8f66b2100aee34684f5f34dcc21679708 (diff)
downloadcortex-m-b7e6d2121d105d9f6a1956fa1eba63871a795735.tar.gz
cortex-m-b7e6d2121d105d9f6a1956fa1eba63871a795735.tar.zst
cortex-m-b7e6d2121d105d9f6a1956fa1eba63871a795735.zip
Add changelog entries
-rw-r--r--cortex-m-rt/CHANGELOG.md9
1 files changed, 9 insertions, 0 deletions
diff --git a/cortex-m-rt/CHANGELOG.md b/cortex-m-rt/CHANGELOG.md
index 5059d3d..9325bc9 100644
--- a/cortex-m-rt/CHANGELOG.md
+++ b/cortex-m-rt/CHANGELOG.md
@@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased]
+### Changed
+
+- Macros now generate a second trampoline function instead of randomizing the
+ function's symbol name. This makes the build deterministic.
+- [breaking-change] `static mut` resources no longer have `'static` lifetime
+ except in the `#[entry]` function (this is a soundness fix; see [#212]).
+
+[#212]: https://github.com/rust-embedded/cortex-m-rt/issues/212
+
## [v0.6.10] - 2019-07-25
### Fixed