File tree 15 files changed +16
-13
lines changed
15 files changed +16
-13
lines changed Original file line number Diff line number Diff line change 18
18
19
19
include :
20
20
# Test MSRV
21
- - rust : 1.60 .0
21
+ - rust : 1.61 .0
22
22
23
23
# Test nightly but don't fail
24
24
- rust : nightly
Original file line number Diff line number Diff line change 13
13
continue-on-error : ${{ matrix.experimental || false }}
14
14
strategy :
15
15
matrix :
16
- rust : [nightly, stable, 1.60 .0]
16
+ rust : [nightly, stable, 1.61 .0]
17
17
18
18
include :
19
19
# Nightly is only for reference and allowed to fail
Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
8
8
## [ Unreleased]
9
9
10
+ - MSRV is now Rust 1.61 to support syn verions >=2.0.68
11
+
10
12
## [ v0.7.4]
11
13
12
14
- Add ` zero-init-ram ` feature to initialize RAM with zeros on startup.
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ version = "0.7.4"
16
16
autoexamples = true
17
17
links = " cortex-m-rt" # Prevent multiple versions of cortex-m-rt being linked
18
18
edition = " 2021"
19
- rust-version = " 1.60 "
19
+ rust-version = " 1.61 "
20
20
21
21
[dependencies ]
22
22
cortex-m-rt-macros = { path = " macros" , version = " =0.7.0" }
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ This project is developed and maintained by the [Cortex-M team][team].
11
11
12
12
# Minimum Supported Rust Version (MSRV)
13
13
14
- This crate is guaranteed to compile on stable Rust 1.60 .0 and up. It * might*
14
+ This crate is guaranteed to compile on stable Rust 1.61 .0 and up. It * might*
15
15
compile with older versions but that may change in any new patch release.
16
16
17
17
# License
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ name = "cortex-m-rt-macros"
9
9
repository = " https://github.com/rust-embedded/cortex-m"
10
10
version = " 0.7.0"
11
11
edition = " 2021"
12
- rust-version = " 1.60 "
12
+ rust-version = " 1.61 "
13
13
14
14
[lib ]
15
15
proc-macro = true
Original file line number Diff line number Diff line change 455
455
//!
456
456
//! # Minimum Supported Rust Version (MSRV)
457
457
//!
458
- //! The MSRV of this release is Rust 1.60 .0.
458
+ //! The MSRV of this release is Rust 1.61 .0.
459
459
460
460
// # Developer notes
461
461
//
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ readme = "README.md"
13
13
repository = " https://github.com/rust-embedded/cortex-m"
14
14
version = " 0.5.0"
15
15
edition = " 2021"
16
- rust-version = " 1.60 "
16
+ rust-version = " 1.61 "
17
17
18
18
[features ]
19
19
jlink-quirks = []
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ This project is developed and maintained by the [Cortex-M team][team].
11
11
12
12
# Minimum Supported Rust Version (MSRV)
13
13
14
- This crate is guaranteed to compile on stable Rust 1.60 .0 and up. It * might*
14
+ This crate is guaranteed to compile on stable Rust 1.61 .0 and up. It * might*
15
15
compile with older versions but that may change in any new patch release.
16
16
17
17
## License
Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
32
32
33
33
### Changed
34
34
- Inline assembly is now always used, requiring Rust 1.59.
35
+ - Bumped MSRV to 1.61 for compatibility with syn versions >=2.0.68.
35
36
36
37
### Removed
37
38
- removed all peripherals ` ptr() ` functions in favor of the associated constant ` PTR ` (#385 ).
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ readme = "README.md"
13
13
repository = " https://github.com/rust-embedded/cortex-m"
14
14
version = " 0.7.4"
15
15
edition = " 2021"
16
- rust-version = " 1.60 "
16
+ rust-version = " 1.61 "
17
17
links = " cortex-m" # prevent multiple versions of this crate to be linked together
18
18
19
19
[dependencies ]
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ This project is developed and maintained by the [Cortex-M team][team].
11
11
12
12
## Minimum Supported Rust Version (MSRV)
13
13
14
- 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.
14
+ This crate is guaranteed to compile on stable Rust 1.61 .0 and up. It might compile with older versions but that may change in any new patch release.
15
15
16
16
## License
17
17
Original file line number Diff line number Diff line change 27
27
//!
28
28
//! # Minimum Supported Rust Version (MSRV)
29
29
//!
30
- //! This crate is guaranteed to compile on stable Rust 1.60 and up. It *might*
30
+ //! This crate is guaranteed to compile on stable Rust 1.61 and up. It *might*
31
31
//! compile with older versions but that may change in any new patch release.
32
32
33
33
#![ deny( missing_docs) ]
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ license = "MIT OR Apache-2.0"
11
11
name = " panic-semihosting"
12
12
repository = " https://github.com/rust-embedded/cortex-m"
13
13
version = " 0.6.0"
14
- rust-version = " 1.60 "
14
+ rust-version = " 1.61 "
15
15
edition = " 2021"
16
16
17
17
[dependencies ]
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ This project is developed and maintained by the [Cortex-M team][team].
8
8
9
9
## Minimum Supported Rust Version (MSRV)
10
10
11
- This crate is guaranteed to compile on stable Rust 1.60 .0 and up. It * might*
11
+ This crate is guaranteed to compile on stable Rust 1.61 .0 and up. It * might*
12
12
compile with older versions but that may change in any new patch release.
13
13
14
14
## License
You can’t perform that action at this time.
0 commit comments