File tree Expand file tree Collapse file tree 3 files changed +13
-3
lines changed Expand file tree Collapse file tree 3 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -7,13 +7,22 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ v0.7.2]
11
+
12
+ - MSRV is now Rust 1.59.
10
13
- Moved precompiled assembly blobs to ` global_asm! ` , requiring Rust 1.59.
14
+ - Add new ` set_vtor ` and ` set-sp ` features to conditionally set the VTOR and SP
15
+ registers at device reset ([ #423 ] ).
16
+ - Allow (unstable) ` naked ` attribute on interrupt handlers and ` pre_init ` .
11
17
12
18
## Fixes
13
19
14
20
- Fix ` cortex_m_rt::exception ` macro no longer being usable fully-qualified ([ #414 ] )
21
+ - Fix veneer limit position in linker script ([ #434 ] ).
15
22
16
23
[ #414 ] : https://github.com/rust-embedded/cortex-m/issues/414
24
+ [ #423 ] : https://github.com/rust-embedded/cortex-m/issues/423
25
+ [ #434 ] : https://github.com/rust-embedded/cortex-m/issues/434
17
26
18
27
## Notes
19
28
@@ -593,7 +602,8 @@ section size addr
593
602
594
603
Initial release
595
604
596
- [ Unreleased ] : https://github.com/rust-embedded/cortex-m-rt/compare/v0.7.1...HEAD
605
+ [ Unreleased ] : https://github.com/rust-embedded/cortex-m/compare/c-m-rt-v0.7.2...HEAD
606
+ [ v0.7.2 ] : https://github.com/rust-embedded/cortex-m/compare/c-m-rt-v0.7.1...c-m-rt-v0.7.2
597
607
[ v0.7.1 ] : https://github.com/rust-embedded/cortex-m-rt/compare/v0.7.0...v0.7.1
598
608
[ v0.7.0 ] : https://github.com/rust-embedded/cortex-m-rt/compare/v0.6.11...v0.7.0
599
609
[ v0.6.15 ] : https://github.com/rust-embedded/cortex-m-rt/compare/v0.6.14...v0.6.15
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ license = "MIT OR Apache-2.0"
12
12
name = " cortex-m-rt"
13
13
readme = " README.md"
14
14
repository = " https://github.com/rust-embedded/cortex-m"
15
- version = " 0.7.1 "
15
+ version = " 0.7.2 "
16
16
autoexamples = true
17
17
links = " cortex-m-rt" # Prevent multiple versions of cortex-m-rt being linked
18
18
edition = " 2021"
Original file line number Diff line number Diff line change @@ -491,7 +491,7 @@ macro_rules! cfg_global_asm {
491
491
// This reset vector is the initial entry point after a system reset.
492
492
// Calls an optional user-provided __pre_init and then initialises RAM.
493
493
// If the target has an FPU, it is enabled.
494
- // Finally jumsp to the user main function.
494
+ // Finally jumps to the user main function.
495
495
#[ cfg( cortex_m) ]
496
496
cfg_global_asm ! {
497
497
".cfi_sections .debug_frame
You can’t perform that action at this time.
0 commit comments