Skip to content

Commit

Permalink
Merge #62
Browse files Browse the repository at this point in the history
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 <jteske@posteo.net>
  • Loading branch information
bors[bot] and teskje authored Apr 28, 2020
2 parents 6925d34 + 6619f90 commit 1d802fb
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 6 deletions.
18 changes: 12 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,17 @@ language: rust
sudo: false

os:
- linux
- osx
- linux
- osx

rust:
- nightly
- stable
# MSRV
- 1.32.0

script:
- rustup component add rustfmt
- cargo build --verbose
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then cargo test --verbose; fi
- cargo fmt -- --check
- rustup component add rustfmt
- cargo build --verbose
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then cargo test --verbose; fi
- cargo fmt -- --check
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,11 @@ Most likely, the machine you are running on is not your development
machine (although it could be). In those cases, you will need to
cross-compile. See https://github.com/japaric/rust-cross for pointers.

## Minimum Supported Rust Version (MSRV)

This crate is guaranteed to compile on stable Rust 1.32.0 and up. It *might*
compile with older versions but that may change in any new patch release.

## License

Licensed under either of
Expand Down

0 comments on commit 1d802fb

Please sign in to comment.