diff options
author | 2019-07-11 11:20:20 +0000 | |
---|---|---|
committer | 2019-07-11 11:20:20 +0000 | |
commit | 7de67e88739eb446782ec2484d84cb338a12136a (patch) | |
tree | 5aa0e22813362dee86a9dc81c7218a66ba3a68bb | |
parent | 5678f48fb3d4badf521b9720381c1f1a80994ddc (diff) | |
parent | 8b723f8470811db36eaca220cdc3c44dfaf622e2 (diff) | |
download | cortex-m-7de67e88739eb446782ec2484d84cb338a12136a.tar.gz cortex-m-7de67e88739eb446782ec2484d84cb338a12136a.tar.zst cortex-m-7de67e88739eb446782ec2484d84cb338a12136a.zip |
Merge #194
194: v0.6.9 r=adamgreig a=japaric
prepare a new patch release that includes PRs #190 and #192
Co-authored-by: Jorge Aparicio <jorge@japaric.io>
-rw-r--r-- | cortex-m-rt/CHANGELOG.md | 11 | ||||
-rw-r--r-- | cortex-m-rt/Cargo.toml | 2 |
2 files changed, 11 insertions, 2 deletions
diff --git a/cortex-m-rt/CHANGELOG.md b/cortex-m-rt/CHANGELOG.md index 1241a4f..b1ded81 100644 --- a/cortex-m-rt/CHANGELOG.md +++ b/cortex-m-rt/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.6.9] - 2019-07-11 + +### Added + +- Input `.uninit.*` sections are now collected into an output `.uninit` section. + Uninitialized static variables are meant to be placed in these sections. The + output `.uninit` section is not initialized by the runtime. + ## [v0.6.8] - 2019-04-02 ### Fixed @@ -443,7 +451,8 @@ section size addr Initial release -[Unreleased]: https://github.com/rust-embedded/cortex-m-rt/compare/v0.6.8...HEAD +[Unreleased]: https://github.com/rust-embedded/cortex-m-rt/compare/v0.6.9...HEAD +[v0.6.9]: https://github.com/rust-embedded/cortex-m-rt/compare/v0.6.8...v0.6.9 [v0.6.8]: https://github.com/rust-embedded/cortex-m-rt/compare/v0.6.7...v0.6.8 [v0.6.7]: https://github.com/rust-embedded/cortex-m-rt/compare/v0.6.6...v0.6.7 [v0.6.6]: https://github.com/rust-embedded/cortex-m-rt/compare/v0.6.5...v0.6.6 diff --git a/cortex-m-rt/Cargo.toml b/cortex-m-rt/Cargo.toml index de0cee2..fecec9b 100644 --- a/cortex-m-rt/Cargo.toml +++ b/cortex-m-rt/Cargo.toml @@ -12,7 +12,7 @@ license = "MIT OR Apache-2.0" name = "cortex-m-rt" readme = "README.md" repository = "https://github.com/rust-embedded/cortex-m-rt" -version = "0.6.8" +version = "0.6.9" autoexamples = true [dependencies] |