aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Viktor Sonesten <v@tmplt.dev> 2021-11-27 13:34:28 +0100
committerGravatar Viktor Sonesten <v@tmplt.dev> 2021-11-27 13:39:28 +0100
commitc1d434a7e7ee1a04ce06c3e3bcdb9b65e048b8ba (patch)
treed1bfb453628e0416910252277f8e60e9991dda6b
parent360fb334c7cec241ca4e396b5ab23c58fb8905fe (diff)
downloadcortex-m-c1d434a7e7ee1a04ce06c3e3bcdb9b65e048b8ba.tar.gz
cortex-m-c1d434a7e7ee1a04ce06c3e3bcdb9b65e048b8ba.tar.zst
cortex-m-c1d434a7e7ee1a04ce06c3e3bcdb9b65e048b8ba.zip
bump MSRV
Required to support the #[non_exhaustive] attribute.
-rw-r--r--.github/bors.toml2
-rw-r--r--.github/workflows/ci.yml2
-rw-r--r--README.md2
-rw-r--r--src/lib.rs2
4 files changed, 4 insertions, 4 deletions
diff --git a/.github/bors.toml b/.github/bors.toml
index 63d883f..0cf10c7 100644
--- a/.github/bors.toml
+++ b/.github/bors.toml
@@ -3,7 +3,7 @@ delete_merged_branches = true
required_approvals = 1
status = [
"ci-linux (stable)",
- "ci-linux (1.38.0)",
+ "ci-linux (1.40.0)",
"rustfmt",
"clippy",
]
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 7289085..8600054 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -16,7 +16,7 @@ jobs:
include:
# Test MSRV
- - rust: 1.38.0
+ - rust: 1.40.0
# Test nightly but don't fail
- rust: nightly
diff --git a/README.md b/README.md
index 6bd8aed..6011ab2 100644
--- a/README.md
+++ b/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.38 and up. It might compile with older versions but that may change in any new patch release.
+This crate is guaranteed to compile on stable Rust 1.40 and up. It might compile with older versions but that may change in any new patch release.
## License
diff --git a/src/lib.rs b/src/lib.rs
index 6a73692..a267750 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -52,7 +52,7 @@
//!
//! # Minimum Supported Rust Version (MSRV)
//!
-//! This crate is guaranteed to compile on stable Rust 1.38 and up. It *might*
+//! This crate is guaranteed to compile on stable Rust 1.40 and up. It *might*
//! compile with older versions but that may change in any new patch release.
#![cfg_attr(feature = "inline-asm", feature(asm))]