Skip to content

Commit 1a1729f

Browse files
bors[bot]luojia65
andauthored
Merge #65
65: Update `riscv` crate to version 0.6 r=Disasm a=luojia65 This pull request solves a probable version conflict between latest `riscv` and `riscv-rt`. The MSRV is also updated to 1.42.0, since the 0.6.0 version of `riscv` crate requires 1.42.0: [link](https://github.com/rust-embedded/riscv/blob/6392fa9520b042bd559b00b9c7131b6de4189f89/CHANGELOG.md#changed). This pull request also includes a small typo fix in changelog file. Co-authored-by: luojia65 <me@luojia.cc>
2 parents 1d28064 + 47416ae commit 1a1729f

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

riscv-rt/CHANGELOG.md

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

88
## [Unreleased]
99

10+
### Changed
11+
12+
- Update `riscv` to version 0.6
13+
- Update Minimum Supported Rust Version to 1.42.0
14+
1015
## [v0.7.2] - 2020-07-16
1116

1217
### Changed
@@ -22,7 +27,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
2227

2328
### Changed
2429

25-
- Exception handler may return now
30+
- Exception handler may return now
2631

2732
## [v0.7.0] - 2020-03-10
2833

riscv-rt/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ license = "ISC"
1010

1111
[dependencies]
1212
r0 = "1.0.0"
13-
riscv = "0.5.5"
13+
riscv = "0.6"
1414
riscv-rt-macros = { path = "macros", version = "0.1.6" }
1515

1616
[features]

riscv-rt/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This project is developed and maintained by the [RISC-V team][team].
1212

1313
## Minimum Supported Rust Version (MSRV)
1414

15-
This crate is guaranteed to compile on stable Rust 1.38.0 and up. It *might*
15+
This crate is guaranteed to compile on stable Rust 1.42.0 and up. It *might*
1616
compile with older versions but that may change in any new patch release.
1717

1818
## License

riscv-rt/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//!
33
//! # Minimum Supported Rust Version (MSRV)
44
//!
5-
//! This crate is guaranteed to compile on stable Rust 1.38 and up. It *might*
5+
//! This crate is guaranteed to compile on stable Rust 1.42 and up. It *might*
66
//! compile with older versions but that may change in any new patch release.
77
//!
88
//! # Features

0 commit comments

Comments
 (0)