Skip to content

Commit 577654f

Browse files
committed
bump cortex-ar, cortex-a-rt and cortex-m-rt MSRV to v1.83
1 parent 71967ed commit 577654f

File tree

14 files changed

+16
-14
lines changed

14 files changed

+16
-14
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ on:
55
name: Build
66

77
jobs:
8-
# Define Rust versions dynamically
8+
# Define Rust versions dynamically. Test stable and MSRV.
99
setup:
1010
runs-on: ubuntu-latest
1111
outputs:
1212
matrix: ${{ steps.set-matrix.outputs.rust_versions }}
1313
steps:
1414
- id: set-matrix
1515
run: |
16-
echo 'rust_versions={"rust": ["stable", "1.82"]}' >> "$GITHUB_OUTPUT"
16+
echo 'rust_versions={"rust": ["stable", "1.83"]}' >> "$GITHUB_OUTPUT"
1717
1818
# Build the workspace for a target architecture
1919
build:

cortex-a-rt/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ name = "cortex-a-rt"
1111
readme = "README.md"
1212
repository = "https://github.com/rust-embedded/cortex-ar.git"
1313
homepage = "https://github.com/rust-embedded/cortex-ar.git"
14-
rust-version = "1.82"
14+
rust-version = "1.83"
1515
version = "0.1.1"
1616

1717
[dependencies]

cortex-a-rt/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ See <https://docs.rs/cortex-a-rt> for detailed documentation.
1818

1919
## Minimum Supported Rust Version (MSRV)
2020

21-
This crate is guaranteed to compile on stable Rust 1.82.0 and up, as recorded
21+
This crate is guaranteed to compile on stable Rust 1.83.0 and up, as recorded
2222
by the `package.rust-version` property in `Cargo.toml`.
2323

2424
Increasing the MSRV is not considered a breaking change and may occur in a

cortex-ar-rt-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ name = "cortex-ar-rt-macros"
1111
readme = "README.md"
1212
repository = "https://github.com/rust-embedded/cortex-ar.git"
1313
homepage = "https://github.com/rust-embedded/cortex-ar.git"
14-
rust-version = "1.82"
14+
rust-version = "1.83"
1515
version = "0.1.0"
1616

1717
[lib]

cortex-ar-rt-macros/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This crate contains proc-macros that are re-exported through the following crate
1010

1111
## Minimum Supported Rust Version (MSRV)
1212

13-
This crate is guaranteed to compile on stable Rust 1.82.0 and up, as recorded
13+
This crate is guaranteed to compile on stable Rust 1.83.0 and up, as recorded
1414
by the `package.rust-version` property in `Cargo.toml`.
1515

1616
Increasing the MSRV is not considered a breaking change and may occur in a

cortex-ar/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10+
- Bumped MSRV for `cortex-ar` to v1.83 to allow compatibility with `arbitrary-int` v2.
11+
1012
### Added
1113

1214
- `dmb` data memory barrier in ASM module.

cortex-ar/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ name = "cortex-ar"
2121
readme = "README.md"
2222
repository = "https://github.com/rust-embedded/cortex-ar.git"
2323
homepage = "https://github.com/rust-embedded/cortex-ar.git"
24-
rust-version = "1.82"
24+
rust-version = "1.83"
2525
version = "0.2.0"
2626

2727
[dependencies]

cortex-ar/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ If you need a driver for the Arm Generic Interrupt Controller, see
2525

2626
## Minimum Supported Rust Version (MSRV)
2727

28-
This crate is guaranteed to compile on stable Rust 1.82.0 and up, as recorded
28+
This crate is guaranteed to compile on stable Rust 1.83.0 and up, as recorded
2929
by the `package.rust-version` property in `Cargo.toml`.
3030

3131
Increasing the MSRV is not considered a breaking change and may occur in a

cortex-r-rt/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ license = "MIT OR Apache-2.0"
2020
name = "cortex-r-rt"
2121
readme = "README.md"
2222
repository = "https://github.com/rust-embedded/cortex-r.git"
23-
rust-version = "1.82"
23+
rust-version = "1.83"
2424
version = "0.2.0"
2525

2626
[dependencies]

cortex-r-rt/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ See <https://docs.rs/cortex-r-rt> for detailed documentation.
1212

1313
## Minimum Supported Rust Version (MSRV)
1414

15-
This crate is guaranteed to compile on stable Rust 1.82.0 and up, as recorded
15+
This crate is guaranteed to compile on stable Rust 1.83.0 and up, as recorded
1616
by the `package.rust-version` property in `Cargo.toml`.
1717

1818
Increasing the MSRV is not considered a breaking change and may occur in a

0 commit comments

Comments
 (0)