Skip to content

Commit 3703a09

Browse files
committed
c-m-rt: revert MSRV to 1.59
1 parent dad37a9 commit 3703a09

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed

.github/workflows/rt-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
continue-on-error: ${{ matrix.experimental || false }}
1414
strategy:
1515
matrix:
16-
rust: [nightly, stable, 1.60.0]
16+
rust: [nightly, stable, 1.59.0]
1717

1818
include:
1919
# Nightly is only for reference and allowed to fail

cortex-m-rt/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1515
It has one option `trampoline` which is true by default. When set to false,
1616
no trampoline will be created and the function will be called as the
1717
exception handler directly.
18-
- MSRV increased to 1.60.0 to align with `embedded-hal` version 1.
1918
- 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.
2021

2122
## [v0.7.3]
2223

cortex-m-rt/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ version = "0.7.4"
1616
autoexamples = true
1717
links = "cortex-m-rt" # Prevent multiple versions of cortex-m-rt being linked
1818
edition = "2021"
19-
rust-version = "1.60"
19+
rust-version = "1.59"
2020

2121
[dependencies]
2222
cortex-m-rt-macros = { path = "macros", version = "=0.7.0" }

cortex-m-rt/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This project is developed and maintained by the [Cortex-M team][team].
1111

1212
# Minimum Supported Rust Version (MSRV)
1313

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*
1515
compile with older versions but that may change in any new patch release.
1616

1717
# License

cortex-m-rt/macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ name = "cortex-m-rt-macros"
99
repository = "https://github.com/rust-embedded/cortex-m"
1010
version = "0.7.0"
1111
edition = "2021"
12-
rust-version = "1.60"
12+
rust-version = "1.59"
1313

1414
[lib]
1515
proc-macro = true

cortex-m-rt/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,7 @@
455455
//!
456456
//! # Minimum Supported Rust Version (MSRV)
457457
//!
458-
//! The MSRV of this release is Rust 1.60.0.
458+
//! The MSRV of this release is Rust 1.59.0.
459459
460460
// # Developer notes
461461
//

0 commit comments

Comments
 (0)