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