From e5d9e4d5fda30c9af3aec2a09a651cd1a416a2f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20Vi=C3=B6l?= Date: Mon, 27 Nov 2023 08:18:50 +0100 Subject: [PATCH] Update MSRV to 1.60 --- .github/workflows/ci.yml | 2 +- CHANGELOG.md | 2 +- Cargo.toml | 2 +- README.md | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e3e26239..0077c74d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -57,7 +57,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions-rs/toolchain@v1 with: - toolchain: 1.59.0 + toolchain: 1.60.0 target: thumbv7em-none-eabihf override: true profile: minimal diff --git a/CHANGELOG.md b/CHANGELOG.md index d4cf196f..c0124117 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,7 +18,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - Update `stm32f3` pac to v0.15.1 ([#335]) - Update `bxcan` pac to v0.7.0 ([#335]) -- The MSRV was bumped to 1.59 ([#335]) - Deprecate `Toggle` enum and use `Switch` instead for better naming purposes ([#334]) - Add `impl From for Switch` to reduce churn. @@ -51,6 +50,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). sound. [critical-section]: https://github.com/rust-embedded/critical-section +- The MSRV was bumped to 1.60 ## [v0.9.2] - 2023-02-20 diff --git a/Cargo.toml b/Cargo.toml index 04c300e5..84efa8db 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ documentation = "https://docs.rs/stm32f3xx-hal" version = "0.9.2" exclude = ["codegen", ".markdownlint.yml"] resolver = "2" -rust-version = "1.59" +rust-version = "1.60" [package.metadata.docs.rs] features = ["stm32f303xc", "rt", "usb", "can", "enumset"] diff --git a/README.md b/README.md index f94378eb..c94bd392 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ [![Crate](https://img.shields.io/crates/v/stm32f3xx-hal.svg)](https://crates.io/crates/stm32f3xx-hal) [![Docs](https://docs.rs/stm32f3xx-hal/badge.svg)](https://docs.rs/stm32f3xx-hal) [![Crates.io](https://img.shields.io/crates/d/stm32f3xx-hal.svg)](https://crates.io/crates/stm32f3xx-hal) -![Minimum Supported Rust Version](https://img.shields.io/badge/rustc-1.59+-blue.svg) +![Minimum Supported Rust Version](https://img.shields.io/badge/rustc-1.60+-blue.svg) `stm32f3xx-hal` contains a multi device hardware abstraction on top of the peripheral access API for the STMicro STM32F3 series microcontrollers. The @@ -138,7 +138,7 @@ See the [examples folder](examples) for more example programs. ## Minimum Supported Rust Version (MSRV) -This crate is guaranteed to compile on stable Rust 1.59.0 and up. It *might* +This crate is guaranteed to compile on stable Rust 1.60.0 and up. It *might* compile with older versions but that may change in any new patch release.