diff options
author | 2018-10-23 20:25:28 +0100 | |
---|---|---|
committer | 2018-10-23 20:25:28 +0100 | |
commit | 32ab813196bada3290f57c4b39e10e741b90ef6f (patch) | |
tree | 73973748eea79198804b60292722d4ae29596b66 | |
parent | 8963dc846502084819c9024e55b95980564a009e (diff) | |
download | cortex-m-32ab813196bada3290f57c4b39e10e741b90ef6f.tar.gz cortex-m-32ab813196bada3290f57c4b39e10e741b90ef6f.tar.zst cortex-m-32ab813196bada3290f57c4b39e10e741b90ef6f.zip |
v0.6.5
-rw-r--r-- | cortex-m-rt/CHANGELOG.md | 15 | ||||
-rw-r--r-- | cortex-m-rt/Cargo.toml | 8 | ||||
-rw-r--r-- | cortex-m-rt/macros/Cargo.toml | 6 |
3 files changed, 21 insertions, 8 deletions
diff --git a/cortex-m-rt/CHANGELOG.md b/cortex-m-rt/CHANGELOG.md index 91ef8cd..1054eb4 100644 --- a/cortex-m-rt/CHANGELOG.md +++ b/cortex-m-rt/CHANGELOG.md @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.6.5] - 2018-10-23 + +### Changed + +- We now keep `.stack_sizes` by default, for use with external tooling. +- (macros) New `#[interrupt]` attribute added, similar to `#[exception]` for + use with device-specific interrupt handlers. + +### Fixed + +- GDB can now unwind HardFault callstacks + ## [v0.6.4] - 2018-09-25 ### Changed @@ -388,7 +400,8 @@ section size addr Initial release -[Unreleased]: https://github.com/rust-embedded/cortex-m-rt/compare/v0.6.4...HEAD +[Unreleased]: https://github.com/rust-embedded/cortex-m-rt/compare/v0.6.5...HEAD +[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 [v0.6.3]: https://github.com/rust-embedded/cortex-m-rt/compare/v0.6.2...v0.6.3 [v0.6.2]: https://github.com/rust-embedded/cortex-m-rt/compare/v0.6.1...v0.6.2 diff --git a/cortex-m-rt/Cargo.toml b/cortex-m-rt/Cargo.toml index 3fd61ee..923fa22 100644 --- a/cortex-m-rt/Cargo.toml +++ b/cortex-m-rt/Cargo.toml @@ -8,14 +8,14 @@ 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.4" +version = "0.6.5" [dependencies] -r0 = "0.2.1" -cortex-m-rt-macros = { path = "macros", version = "0.1.2" } +r0 = "0.2.2" +cortex-m-rt-macros = { path = "macros", version = "0.1.3" } [dev-dependencies] -cortex-m = "0.5.4" +cortex-m = "0.5.7" panic-halt = "0.2.0" cortex-m-semihosting = "0.3.1" diff --git a/cortex-m-rt/macros/Cargo.toml b/cortex-m-rt/macros/Cargo.toml index 1687c4d..017575c 100644 --- a/cortex-m-rt/macros/Cargo.toml +++ b/cortex-m-rt/macros/Cargo.toml @@ -7,18 +7,18 @@ 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.2" +version = "0.1.3" [lib] proc-macro = true [dependencies] quote = "0.6.8" -proc-macro2 = "0.4.19" +proc-macro2 = "0.4.20" [dependencies.syn] features = ["extra-traits", "full"] -version = "0.15.4" +version = "0.15.13" [dependencies.rand] version = "0.5.5" |