File tree Expand file tree Collapse file tree 6 files changed +7
-6
lines changed Expand file tree Collapse file tree 6 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 13
13
continue-on-error : ${{ matrix.experimental || false }}
14
14
strategy :
15
15
matrix :
16
- rust : [nightly, stable, 1.60 .0]
16
+ rust : [nightly, stable, 1.59 .0]
17
17
18
18
include :
19
19
# Nightly is only for reference and allowed to fail
Original file line number Diff line number Diff line change @@ -15,8 +15,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
15
15
It has one option ` trampoline ` which is true by default. When set to false,
16
16
no trampoline will be created and the function will be called as the
17
17
exception handler directly.
18
- - MSRV increased to 1.60.0 to align with ` embedded-hal ` version 1.
19
18
- Improve linker error message when code does not fit into flash.
19
+ - Update documentation on using custom linker scripts and linker sections
20
+ and on the ` pre_init ` function.
20
21
21
22
## [ v0.7.3]
22
23
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ version = "0.7.4"
16
16
autoexamples = true
17
17
links = " cortex-m-rt" # Prevent multiple versions of cortex-m-rt being linked
18
18
edition = " 2021"
19
- rust-version = " 1.60 "
19
+ rust-version = " 1.59 "
20
20
21
21
[dependencies ]
22
22
cortex-m-rt-macros = { path = " macros" , version = " =0.7.0" }
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ This project is developed and maintained by the [Cortex-M team][team].
11
11
12
12
# Minimum Supported Rust Version (MSRV)
13
13
14
- This crate is guaranteed to compile on stable Rust 1.60 .0 and up. It * might*
14
+ This crate is guaranteed to compile on stable Rust 1.59 .0 and up. It * might*
15
15
compile with older versions but that may change in any new patch release.
16
16
17
17
# License
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ name = "cortex-m-rt-macros"
9
9
repository = " https://github.com/rust-embedded/cortex-m"
10
10
version = " 0.7.0"
11
11
edition = " 2021"
12
- rust-version = " 1.60 "
12
+ rust-version = " 1.59 "
13
13
14
14
[lib ]
15
15
proc-macro = true
Original file line number Diff line number Diff line change 455
455
//!
456
456
//! # Minimum Supported Rust Version (MSRV)
457
457
//!
458
- //! The MSRV of this release is Rust 1.60 .0.
458
+ //! The MSRV of this release is Rust 1.59 .0.
459
459
460
460
// # Developer notes
461
461
//
You can’t perform that action at this time.
0 commit comments