diff options
author | 2017-06-03 20:23:43 -0500 | |
---|---|---|
committer | 2017-06-03 20:23:43 -0500 | |
commit | a2af5e27d0aeb3c507a1193b74dae24da2c17bda (patch) | |
tree | 70c9713ead160119c9515ac79d45cdeec769684e | |
parent | d9440775f32ffec660d01059a0403f2eeba69ea7 (diff) | |
download | cortex-m-a2af5e27d0aeb3c507a1193b74dae24da2c17bda.tar.gz cortex-m-a2af5e27d0aeb3c507a1193b74dae24da2c17bda.tar.zst cortex-m-a2af5e27d0aeb3c507a1193b74dae24da2c17bda.zip |
v0.2.4
-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 e7a3216..a60cb10 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.2.4] - 2017-06-03 + +### Added + +- A non-allocatable `.stlog` section to support the [`stlog`] logging framework. + +[`stlog`]: https://crates.io/crates/stlog + ## [v0.2.3] - 2017-05-30 ### Added @@ -87,7 +95,8 @@ section size addr Initial release -[Unreleased]: https://github.com/japaric/cortex-m-rt/compare/v0.2.3...HEAD +[Unreleased]: https://github.com/japaric/cortex-m-rt/compare/v0.2.4...HEAD +[v0.2.4]: https://github.com/japaric/cortex-m-rt/compare/v0.2.3...v0.2.4 [v0.2.3]: https://github.com/japaric/cortex-m-rt/compare/v0.2.2...v0.2.3 [v0.2.2]: https://github.com/japaric/cortex-m-rt/compare/v0.2.1...v0.2.2 [v0.2.1]: https://github.com/japaric/cortex-m-rt/compare/v0.2.0...v0.2.1 diff --git a/cortex-m-rt/Cargo.toml b/cortex-m-rt/Cargo.toml index 576fc71..0b24d79 100644 --- a/cortex-m-rt/Cargo.toml +++ b/cortex-m-rt/Cargo.toml @@ -7,7 +7,7 @@ keywords = ["arm", "cortex-m", "runtime", "startup"] license = "MIT OR Apache-2.0" name = "cortex-m-rt" repository = "https://github.com/japaric/cortex-m-rt" -version = "0.2.3" +version = "0.2.4" [dependencies] r0 = "0.2.1" |