diff options
author | 2018-12-15 21:06:31 +0000 | |
---|---|---|
committer | 2018-12-15 21:06:31 +0000 | |
commit | 28f74ed6d29df432334d29d2083e91a1a5d0fa6c (patch) | |
tree | 1399c13e9d4da3bf2edc972d5886d8a3c3337797 /cortex-m-rt | |
parent | 0cabf09a7ac11962b57a75e52a6cc0c5aa2709a8 (diff) | |
parent | b34fb3a96b5afbbf60dc20b253ea2ea18ad90617 (diff) | |
download | cortex-m-28f74ed6d29df432334d29d2083e91a1a5d0fa6c.tar.gz cortex-m-28f74ed6d29df432334d29d2083e91a1a5d0fa6c.tar.zst cortex-m-28f74ed6d29df432334d29d2083e91a1a5d0fa6c.zip |
Merge #160
160: prepare for v0.6.7 release r=therealprof a=japaric
Co-authored-by: Jorge Aparicio <jorge@japaric.io>
Diffstat (limited to 'cortex-m-rt')
-rw-r--r-- | cortex-m-rt/CHANGELOG.md | 10 | ||||
-rw-r--r-- | cortex-m-rt/Cargo.toml | 4 | ||||
-rw-r--r-- | cortex-m-rt/macros/Cargo.toml | 2 |
3 files changed, 12 insertions, 4 deletions
diff --git a/cortex-m-rt/CHANGELOG.md b/cortex-m-rt/CHANGELOG.md index c382235..00c2cd9 100644 --- a/cortex-m-rt/CHANGELOG.md +++ b/cortex-m-rt/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.6.7] - 2018-12-15 + +### Fixed + +- entry / exception / interrupt: `#[cfg]` attributes used on `static mut` + variables are now properly handled. + ## [v0.6.6] - 2018-12-06 ### Changed @@ -422,7 +429,8 @@ section size addr Initial release -[Unreleased]: https://github.com/rust-embedded/cortex-m-rt/compare/v0.6.6...HEAD +[Unreleased]: https://github.com/rust-embedded/cortex-m-rt/compare/v0.6.7...HEAD +[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 [v0.6.5]: https://github.com/rust-embedded/cortex-m-rt/compare/v0.6.4...v0.6.5 [v0.6.4]: https://github.com/rust-embedded/cortex-m-rt/compare/v0.6.3...v0.6.4 diff --git a/cortex-m-rt/Cargo.toml b/cortex-m-rt/Cargo.toml index 787250c..bb2dde9 100644 --- a/cortex-m-rt/Cargo.toml +++ b/cortex-m-rt/Cargo.toml @@ -8,12 +8,12 @@ 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.6" +version = "0.6.7" autoexamples = true [dependencies] r0 = "0.2.2" -cortex-m-rt-macros = { path = "macros", version = "0.1.4" } +cortex-m-rt-macros = { path = "macros", version = "0.1.5" } [dev-dependencies] cortex-m = "0.5.7" diff --git a/cortex-m-rt/macros/Cargo.toml b/cortex-m-rt/macros/Cargo.toml index 02e80b4..1ca968c 100644 --- a/cortex-m-rt/macros/Cargo.toml +++ b/cortex-m-rt/macros/Cargo.toml @@ -7,7 +7,7 @@ keywords = ["arm", "cortex-m", "runtime", "startup"] license = "MIT OR Apache-2.0" name = "cortex-m-rt-macros" repository = "https://github.com/japaric/cortex-m-rt" -version = "0.1.4" +version = "0.1.5" [lib] proc-macro = true |