File tree 2 files changed +25
-2
lines changed
2 files changed +25
-2
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,28 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ v0.6.6] - 2018-12-06
11
+
12
+ ### Changed
13
+
14
+ - Misuse of attributes now produce compiler errors with proper spans instead of
15
+ panicking messages.
16
+
17
+ - The ` HardFault ` symbol has been renamed to ` HardFaultTrampoline ` ; likewise the
18
+ ` UserHardFault ` symbol has been renamed to ` HardFault ` . If you were using
19
+ breakpoints on ` UserHardFault ` to detect hard fault you should now put those
20
+ breakpoints on the ` HardFault ` symbol.
21
+
22
+ ### Fixed
23
+
24
+ - Attributes on local ` static mut ` variables (declared at the beginning of
25
+ ` entry ` / ` interrupt ` / ` exception ` ) are now respected.
26
+
27
+ - The "GDB can now unwind HardFault callstacks" fix from the previous release
28
+ broke ` HardFault ` 's' ` &ExceptionFrame ` argument (the pointer was off by 8
29
+ bytes). This release fixes that problem without compromising GDB's ability to
30
+ unwind ` HardFault ` s.
31
+
10
32
## [ v0.6.5] - 2018-10-23
11
33
12
34
### Changed
@@ -400,7 +422,8 @@ section size addr
400
422
401
423
Initial release
402
424
403
- [ Unreleased ] : https://github.com/rust-embedded/cortex-m-rt/compare/v0.6.5...HEAD
425
+ [ Unreleased ] : https://github.com/rust-embedded/cortex-m-rt/compare/v0.6.6...HEAD
426
+ [ v0.6.6 ] : https://github.com/rust-embedded/cortex-m-rt/compare/v0.6.5...v0.6.6
404
427
[ v0.6.5 ] : https://github.com/rust-embedded/cortex-m-rt/compare/v0.6.4...v0.6.5
405
428
[ v0.6.4 ] : https://github.com/rust-embedded/cortex-m-rt/compare/v0.6.3...v0.6.4
406
429
[ v0.6.3 ] : https://github.com/rust-embedded/cortex-m-rt/compare/v0.6.2...v0.6.3
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0"
8
8
name = " cortex-m-rt"
9
9
readme = " README.md"
10
10
repository = " https://github.com/rust-embedded/cortex-m-rt"
11
- version = " 0.6.5 "
11
+ version = " 0.6.6 "
12
12
autoexamples = true
13
13
14
14
[dependencies ]
You can’t perform that action at this time.
0 commit comments