Skip to content

Commit

Permalink
Update MSRV to 1.60
Browse files Browse the repository at this point in the history
  • Loading branch information
Sh3Rm4n committed Nov 27, 2023
1 parent bb4453f commit e5d9e4d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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<Toggle> for Switch` to reduce churn.
Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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.

<!-- This should not prevent anyone to use newer features. -->
Expand Down

0 comments on commit e5d9e4d

Please sign in to comment.