diff --git a/Cargo.toml b/Cargo.toml index 9849fb3..744236e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ keywords = ["Linux", "hal"] license = "MIT OR Apache-2.0" name = "linux-embedded-hal" repository = "https://github.com/rust-embedded/linux-embedded-hal" -version = "0.3.0" +version = "0.4.0-alpha.0" edition = "2018" [features] diff --git a/README.md b/README.md index c84ad07..4a7c42b 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,9 @@ This project is developed and maintained by the [Embedded Linux team][team]. ## [Documentation](https://docs.rs/linux-embedded-hal) +Note that current `v0.4.0-alpha.X` releases track the unstable ['embedded-hal'] `v1.0.0-alpha.Y`. +For bugfixes or backports please open PRs against the `v0.3.x` branch. + ## GPIO character device Since Linux kernel v4.4 the use of sysfs GPIO was deprecated and replaced by the character device GPIO. @@ -22,7 +25,7 @@ linux-embedded-hal = { version = "0.3", features = ["gpio_cdev"] } `SysfsPin` can be still used with feature flag `gpio_sysfs`. -# Minimum Supported Rust Version (MSRV) +## Minimum Supported Rust Version (MSRV) This crate is guaranteed to compile on stable Rust 1.36.0 and up. It *might* compile with older versions but that may change in any new patch release.