From e529a105a067c8eb9f6b6fc5572e7386d500ca30 Mon Sep 17 00:00:00 2001 From: Daniel Egger Date: Sun, 2 Feb 2020 14:25:51 +0100 Subject: [PATCH] Mention MSRV of 1.39.0 and test it in CI Signed-off-by: Daniel Egger --- .travis.yml | 1 + README.md | 10 +++++++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 9c6c065..9c0aaa1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,6 @@ language: rust rust: + - 1.39.0 - stable - nightly cache: cargo diff --git a/README.md b/README.md index fdb7098..ec73cfe 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ To use stm32f0xx-hal as a dependency in a standalone project the target device f [dependencies] cortex-m = "0.6.0" cortex-m-rt = "0.6.8" -stm32f0xx-hal = {version = "0.14.1", features = ["stm32f030xc"]} +stm32f0xx-hal = {version = "0.15", features = ["stm32f030xc"]} ``` If you are unfamiliar with embedded development using Rust, there are a number of fantastic resources available to help. @@ -54,6 +54,14 @@ If you are unfamiliar with embedded development using Rust, there are a number o - [Rust Embedded FAQ](https://docs.rust-embedded.org/faq.html) - [rust-embedded/awesome-embedded-rust](https://github.com/rust-embedded/awesome-embedded-rust) + +Minimum supported Rust version +------------------------------ + +The minimum supported Rust version at the moment is **1.39.0**. Older versions +**may** compile, especially when some features are not used in your +application. + Changelog ---------