File tree 6 files changed +16
-9
lines changed
6 files changed +16
-9
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,6 @@ delete_merged_branches = true
3
3
required_approvals = 1
4
4
status = [
5
5
" ci-linux (stable)" ,
6
- " ci-linux (1.42 .0)" ,
6
+ " ci-linux (1.59 .0)" ,
7
7
" Rustfmt"
8
8
]
Original file line number Diff line number Diff line change 11
11
continue-on-error : ${{ matrix.experimental || false }}
12
12
strategy :
13
13
matrix :
14
- # All generated code should be running on stable now, MRSV is 1.42 .0
15
- rust : [nightly, stable, 1.42 .0]
14
+ # All generated code should be running on stable now, MSRV is 1.59 .0
15
+ rust : [nightly, stable, 1.59 .0]
16
16
17
17
include :
18
18
# Nightly is only for reference and allowed to fail
Original file line number Diff line number Diff line change @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
8
8
## [ Unreleased]
9
9
10
+ ### Changed
11
+
12
+ - Update ` riscv ` to version 0.8
13
+ - Update Minimum Supported Rust Version to 1.59
14
+
15
+ ### Removed
16
+
17
+ - Remove ` inline-asm ` feature which is now always enabled
18
+
10
19
## [ v0.8.1] - 2022-01-25
11
20
12
21
### Added
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " riscv-rt"
3
3
version = " 0.8.1"
4
+ rust-version = " 1.59"
4
5
repository = " https://github.com/rust-embedded/riscv-rt"
5
6
authors = [
" The RISC-V Team <[email protected] >" ]
6
7
categories = [" embedded" , " no-std" ]
@@ -10,12 +11,9 @@ license = "ISC"
10
11
11
12
[dependencies ]
12
13
r0 = " 1.0.0"
13
- riscv = " 0.7 "
14
+ riscv = " 0.8 "
14
15
riscv-rt-macros = { path = " macros" , version = " 0.1.6" }
15
16
16
- [features ]
17
- inline-asm = [" riscv/inline-asm" ]
18
-
19
17
[dev-dependencies ]
20
18
panic-halt = " 0.2.0"
21
19
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ This project is developed and maintained by the [RISC-V team][team].
12
12
13
13
## Minimum Supported Rust Version (MSRV)
14
14
15
- This crate is guaranteed to compile on stable Rust 1.42.0 and up. It * might*
15
+ This crate is guaranteed to compile on stable Rust 1.59 and up. It * might*
16
16
compile with older versions but that may change in any new patch release.
17
17
18
18
## License
Original file line number Diff line number Diff line change 2
2
//!
3
3
//! # Minimum Supported Rust Version (MSRV)
4
4
//!
5
- //! This crate is guaranteed to compile on stable Rust 1.42 and up. It *might*
5
+ //! This crate is guaranteed to compile on stable Rust 1.59 and up. It *might*
6
6
//! compile with older versions but that may change in any new patch release.
7
7
//!
8
8
//! # Features
You can’t perform that action at this time.
0 commit comments