aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Adam Greig <adam@adamgreig.com> 2022-01-12 01:18:34 +0000
committerGravatar Adam Greig <adam@adamgreig.com> 2022-01-12 01:18:34 +0000
commit38897fa7a2ecd726c63291822cc259ffee73d698 (patch)
tree06e10fef524262ea7c298eae11b5f07ced3b2164
parent731422e3fa9d243bf3fd45db93446d4eadf3761d (diff)
downloadcortex-m-38897fa7a2ecd726c63291822cc259ffee73d698.tar.gz
cortex-m-38897fa7a2ecd726c63291822cc259ffee73d698.tar.zst
cortex-m-38897fa7a2ecd726c63291822cc259ffee73d698.zip
Bump cortex-m-rt MSRV 1.39->1.40 to support non_exhaustive in cortex-m
-rw-r--r--.github/bors.toml2
-rw-r--r--.github/workflows/rt-ci.yml2
-rw-r--r--cortex-m-rt/README.md2
-rw-r--r--cortex-m-rt/src/lib.rs2
4 files changed, 4 insertions, 4 deletions
diff --git a/.github/bors.toml b/.github/bors.toml
index 2bfc949..a398b4a 100644
--- a/.github/bors.toml
+++ b/.github/bors.toml
@@ -5,7 +5,7 @@ status = [
"ci-linux (stable)",
"ci-linux (1.40.0)",
"rt-ci-linux (stable)",
- "rt-ci-linux (1.39.0)",
+ "rt-ci-linux (1.40.0)",
"rt-ci-other-os (macOS-latest)",
"rt-ci-other-os (windows-latest)",
"rustfmt",
diff --git a/.github/workflows/rt-ci.yml b/.github/workflows/rt-ci.yml
index 5b1b6c9..0e48b6b 100644
--- a/.github/workflows/rt-ci.yml
+++ b/.github/workflows/rt-ci.yml
@@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
# All generated code should be running on stable now
- rust: [nightly, stable, 1.39.0]
+ rust: [nightly, stable, 1.40.0]
include:
# Nightly is only for reference and allowed to fail
diff --git a/cortex-m-rt/README.md b/cortex-m-rt/README.md
index a305373..9857720 100644
--- a/cortex-m-rt/README.md
+++ b/cortex-m-rt/README.md
@@ -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.39.0 and up. It *might*
+This crate is guaranteed to compile on stable Rust 1.40.0 and up. It *might*
compile with older versions but that may change in any new patch release.
# License
diff --git a/cortex-m-rt/src/lib.rs b/cortex-m-rt/src/lib.rs
index 43c8090..8003326 100644
--- a/cortex-m-rt/src/lib.rs
+++ b/cortex-m-rt/src/lib.rs
@@ -418,7 +418,7 @@
//!
//! # Minimum Supported Rust Version (MSRV)
//!
-//! The MSRV of this release is Rust 1.39.0.
+//! The MSRV of this release is Rust 1.40.0.
// # Developer notes
//