Skip to content

Commit 32ab813

Browse files
committed
v0.6.5
1 parent 8963dc8 commit 32ab813

File tree

3 files changed

+21
-8
lines changed

3 files changed

+21
-8
lines changed

cortex-m-rt/CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10+
## [v0.6.5] - 2018-10-23
11+
12+
### Changed
13+
14+
- We now keep `.stack_sizes` by default, for use with external tooling.
15+
- (macros) New `#[interrupt]` attribute added, similar to `#[exception]` for
16+
use with device-specific interrupt handlers.
17+
18+
### Fixed
19+
20+
- GDB can now unwind HardFault callstacks
21+
1022
## [v0.6.4] - 2018-09-25
1123

1224
### Changed
@@ -388,7 +400,8 @@ section size addr
388400

389401
Initial release
390402

391-
[Unreleased]: https://github.com/rust-embedded/cortex-m-rt/compare/v0.6.4...HEAD
403+
[Unreleased]: https://github.com/rust-embedded/cortex-m-rt/compare/v0.6.5...HEAD
404+
[v0.6.5]: https://github.com/rust-embedded/cortex-m-rt/compare/v0.6.4...v0.6.5
392405
[v0.6.4]: https://github.com/rust-embedded/cortex-m-rt/compare/v0.6.3...v0.6.4
393406
[v0.6.3]: https://github.com/rust-embedded/cortex-m-rt/compare/v0.6.2...v0.6.3
394407
[v0.6.2]: https://github.com/rust-embedded/cortex-m-rt/compare/v0.6.1...v0.6.2

cortex-m-rt/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ license = "MIT OR Apache-2.0"
88
name = "cortex-m-rt"
99
readme = "README.md"
1010
repository = "https://github.com/rust-embedded/cortex-m-rt"
11-
version = "0.6.4"
11+
version = "0.6.5"
1212

1313
[dependencies]
14-
r0 = "0.2.1"
15-
cortex-m-rt-macros = { path = "macros", version = "0.1.2" }
14+
r0 = "0.2.2"
15+
cortex-m-rt-macros = { path = "macros", version = "0.1.3" }
1616

1717
[dev-dependencies]
18-
cortex-m = "0.5.4"
18+
cortex-m = "0.5.7"
1919
panic-halt = "0.2.0"
2020
cortex-m-semihosting = "0.3.1"
2121

cortex-m-rt/macros/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,18 @@ keywords = ["arm", "cortex-m", "runtime", "startup"]
77
license = "MIT OR Apache-2.0"
88
name = "cortex-m-rt-macros"
99
repository = "https://github.com/japaric/cortex-m-rt"
10-
version = "0.1.2"
10+
version = "0.1.3"
1111

1212
[lib]
1313
proc-macro = true
1414

1515
[dependencies]
1616
quote = "0.6.8"
17-
proc-macro2 = "0.4.19"
17+
proc-macro2 = "0.4.20"
1818

1919
[dependencies.syn]
2020
features = ["extra-traits", "full"]
21-
version = "0.15.4"
21+
version = "0.15.13"
2222

2323
[dependencies.rand]
2424
version = "0.5.5"

0 commit comments

Comments
 (0)