Skip to content

Commit 2daf0d2

Browse files
committed
Update MSRV to 1.42
1 parent 4e6d9a0 commit 2daf0d2

File tree

4 files changed

+6
-14
lines changed

4 files changed

+6
-14
lines changed

.travis.yml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,19 @@ language: rust
33
env:
44
- TARGET=x86_64-unknown-linux-gnu
55
- TARGET=riscv32imac-unknown-none-elf
6+
- TARGET=riscv64imac-unknown-none-elf
7+
- TARGET=riscv64gc-unknown-none-elf
68

79
rust:
810
- nightly
911
- stable
10-
- 1.31.0 # MSRV
12+
- 1.42.0 # MSRV
1113

1214
if: (branch = staging OR branch = trying OR branch = master) OR (type = pull_request AND branch = master)
1315

1416
matrix:
1517
allow_failures:
1618
- rust: nightly
17-
include:
18-
- env: TARGET=riscv64imac-unknown-none-elf
19-
rust: nightly
20-
if: (branch = staging OR branch = trying OR branch = master) OR (type = pull_request AND branch = master)
21-
22-
- env: TARGET=riscv64gc-unknown-none-elf
23-
rust: nightly
24-
if: (branch = staging OR branch = trying OR branch = master) OR (type = pull_request AND branch = master)
2519

2620
- env: CHECK_BLOBS=1
2721
rust:

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1010
### Changed
1111

1212
- `Mtvec::trap_mode()` not returns `Option<TrapMode>` (breaking change)
13-
- Updated Minimum Supported Rust Version to 1.31.0
13+
- Updated Minimum Supported Rust Version to 1.42.0
1414
- Use `llvm_asm!` instead of `asm!`
1515

1616
### Removed

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.31.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

src/lib.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,8 @@
22
//!
33
//! # Minimum Supported Rust Version (MSRV)
44
//!
5-
//! This crate is guaranteed to compile on stable Rust 1.31 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.
7-
//! Note that `riscv64imac-unknown-none-elf` and `riscv64gc-unknown-none-elf` targets
8-
//! are not supported on stable yet.
97
//!
108
//! # Features
119
//!

0 commit comments

Comments
 (0)