diff options
author | 2019-07-11 12:06:22 +0200 | |
---|---|---|
committer | 2019-07-11 12:06:22 +0200 | |
commit | b98ee6c089322a48ad989af28515a565c574983f (patch) | |
tree | a45becfebb2b26261e8813b161b513cb3ebbc374 | |
parent | 5678f48fb3d4badf521b9720381c1f1a80994ddc (diff) | |
download | cortex-m-b98ee6c089322a48ad989af28515a565c574983f.tar.gz cortex-m-b98ee6c089322a48ad989af28515a565c574983f.tar.zst cortex-m-b98ee6c089322a48ad989af28515a565c574983f.zip |
v0.6.9
prepare a new patch release that includes PRs #190 and #192
-rw-r--r-- | cortex-m-rt/CHANGELOG.md | 8 | ||||
-rw-r--r-- | cortex-m-rt/Cargo.toml | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/cortex-m-rt/CHANGELOG.md b/cortex-m-rt/CHANGELOG.md index 1241a4f..b634773 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 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] |