Skip to content

Commit d13776a

Browse files
bors[bot]Disasm
andauthored
Merge #49
49: Update dependencies, bump MSRV r=almindor a=Disasm Co-authored-by: Vadim Kaushan <admin@disasm.info>
2 parents 980b51c + d9b7304 commit d13776a

File tree

5 files changed

+10
-6
lines changed

5 files changed

+10
-6
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ env:
77
rust:
88
- nightly
99
- stable
10-
- 1.30.0 # MSRV
10+
- 1.31.0 # MSRV
1111

1212
if: (branch = staging OR branch = trying OR branch = master) OR (type = pull_request AND branch = master)
1313

CHANGELOG.md

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

88
## [Unreleased]
99

10+
### Changed
11+
12+
- Updated Minimum Supported Rust Version to 1.31.0
13+
1014
## [v0.5.6] - 2020-03-14
1115

1216
### Added

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ keywords = ["riscv", "register", "peripheral"]
99
license = "ISC"
1010

1111
[dependencies]
12-
bare-metal = ">=0.2.0,<0.2.5"
13-
bit_field = "0.9.0"
12+
bare-metal = "0.2.5"
13+
bit_field = "0.10.0"
1414

1515
[build-dependencies]
1616
riscv-target = "0.1.2"
1717

1818
[features]
19-
inline-asm = []
19+
inline-asm = []

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.30.0 and up. It *might*
15+
This crate is guaranteed to compile on stable Rust 1.31.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 & 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.30 and up. It *might*
5+
//! This crate is guaranteed to compile on stable Rust 1.31 and up. It *might*
66
//! compile with older versions but that may change in any new patch release.
77
//! Note that `riscv64imac-unknown-none-elf` and `riscv64gc-unknown-none-elf` targets
88
//! are not supported on stable yet.

0 commit comments

Comments
 (0)