Skip to content

Commit 252e256

Browse files
bors[bot]teskje
andauthored
Merge #62
62: Document and test MSRV 1.32.0 r=nastevens a=ra-kete Part of [wg/#445](rust-embedded/wg#445). Co-authored-by: Jan Teske <[email protected]>
2 parents 6925d34 + 6619f90 commit 252e256

File tree

2 files changed

+17
-6
lines changed

2 files changed

+17
-6
lines changed

.travis.yml

+12-6
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,17 @@ language: rust
22
sudo: false
33

44
os:
5-
- linux
6-
- osx
5+
- linux
6+
- osx
7+
8+
rust:
9+
- nightly
10+
- stable
11+
# MSRV
12+
- 1.32.0
713

814
script:
9-
- rustup component add rustfmt
10-
- cargo build --verbose
11-
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then cargo test --verbose; fi
12-
- cargo fmt -- --check
15+
- rustup component add rustfmt
16+
- cargo build --verbose
17+
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then cargo test --verbose; fi
18+
- cargo fmt -- --check

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,11 @@ Most likely, the machine you are running on is not your development
5151
machine (although it could be). In those cases, you will need to
5252
cross-compile. See https://github.com/japaric/rust-cross for pointers.
5353

54+
## Minimum Supported Rust Version (MSRV)
55+
56+
This crate is guaranteed to compile on stable Rust 1.32.0 and up. It *might*
57+
compile with older versions but that may change in any new patch release.
58+
5459
## License
5560

5661
Licensed under either of

0 commit comments

Comments
 (0)