Skip to content

Commit

Permalink
c-m-rt: revert MSRV to 1.59
Browse files Browse the repository at this point in the history
  • Loading branch information
adamgreig committed Apr 16, 2024
1 parent dad37a9 commit 3703a09
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/rt-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
continue-on-error: ${{ matrix.experimental || false }}
strategy:
matrix:
rust: [nightly, stable, 1.60.0]
rust: [nightly, stable, 1.59.0]

include:
# Nightly is only for reference and allowed to fail
Expand Down
3 changes: 2 additions & 1 deletion cortex-m-rt/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
It has one option `trampoline` which is true by default. When set to false,
no trampoline will be created and the function will be called as the
exception handler directly.
- MSRV increased to 1.60.0 to align with `embedded-hal` version 1.
- Improve linker error message when code does not fit into flash.
- Update documentation on using custom linker scripts and linker sections
and on the `pre_init` function.

## [v0.7.3]

Expand Down
2 changes: 1 addition & 1 deletion cortex-m-rt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ version = "0.7.4"
autoexamples = true
links = "cortex-m-rt" # Prevent multiple versions of cortex-m-rt being linked
edition = "2021"
rust-version = "1.60"
rust-version = "1.59"

[dependencies]
cortex-m-rt-macros = { path = "macros", version = "=0.7.0" }
Expand Down
2 changes: 1 addition & 1 deletion cortex-m-rt/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ This project is developed and maintained by the [Cortex-M team][team].

# Minimum Supported Rust Version (MSRV)

This crate is guaranteed to compile on stable Rust 1.60.0 and up. It *might*
This crate is guaranteed to compile on stable Rust 1.59.0 and up. It *might*
compile with older versions but that may change in any new patch release.

# License
Expand Down
2 changes: 1 addition & 1 deletion cortex-m-rt/macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ name = "cortex-m-rt-macros"
repository = "https://github.com/rust-embedded/cortex-m"
version = "0.7.0"
edition = "2021"
rust-version = "1.60"
rust-version = "1.59"

[lib]
proc-macro = true
Expand Down
2 changes: 1 addition & 1 deletion cortex-m-rt/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@
//!
//! # Minimum Supported Rust Version (MSRV)
//!
//! The MSRV of this release is Rust 1.60.0.
//! The MSRV of this release is Rust 1.59.0.

// # Developer notes
//
Expand Down

0 comments on commit 3703a09

Please sign in to comment.