From 77ec1098f0df1d295de9db0e481abe5e27d9ed2e Mon Sep 17 00:00:00 2001 From: Rene van der Meer <9930578+golemparts@users.noreply.github.com> Date: Sun, 21 Jan 2024 16:20:46 +0100 Subject: [PATCH] Update documentation --- README.md | 4 ++-- src/lib.rs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 94cb831d..5c93f5b5 100644 --- a/README.md +++ b/README.md @@ -7,9 +7,9 @@ RPPAL provides access to the Raspberry Pi's GPIO, I2C, PWM, SPI and UART peripherals through a user-friendly interface. In addition to peripheral access, RPPAL also offers support for USB to serial adapters. -The library can be used in conjunction with a variety of platform-agnostic drivers through its `embedded-hal` trait implementations. Both `embedded-hal` v0.2.7 and v1.0.0 are supported. +The library can be used in conjunction with a variety of platform-agnostic drivers through its `embedded-hal` trait implementations. Both `embedded-hal` v0.2.7 and v1 are supported. -RPPAL requires Raspberry Pi OS or any similar, recent, Linux distribution. Both GNU and musl `libc` targets are supported. RPPAL is compatible with the Raspberry Pi A, A+, B, B+, 2B, 3A+, 3B, 3B+, 4B, 5, CM, CM 3, CM 3+, CM 4, 400, Zero, Zero W and Zero 2 W. Backwards compatibility for minor revisions isn't guaranteed until v1.0.0. +RPPAL requires Raspberry Pi OS or any similar, recent, Linux distribution. Both GNU and musl `libc` targets are supported. RPPAL is compatible with the Raspberry Pi A, A+, B, B+, 2B, 3A+, 3B, 3B+, 4B, 5, CM, CM 3, CM 3+, CM 4, 400, Zero, Zero W and Zero 2 W. Backwards compatibility for minor revisions isn't guaranteed until v1. This library is under development on the [master branch](https://github.com/golemparts/rppal/tree/master) of the repository on GitHub. If you're looking for the `README.md` or the `examples` directory for the latest release or any of the earlier releases, visit [crates.io](https://crates.io/crates/rppal), download an archived release from the GitHub [releases](https://github.com/golemparts/rppal/releases) page, or clone and checkout the relevant release tag. diff --git a/src/lib.rs b/src/lib.rs index 31d87ea1..fd18f988 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -4,13 +4,13 @@ //! //! The library can be used in conjunction with a variety of platform-agnostic //! drivers through its `embedded-hal` trait implementations. Both `embedded-hal` -//! v0.2.7 and v1.0.0 are supported. +//! v0.2.7 and v1 are supported. //! //! RPPAL requires Raspberry Pi OS or any similar, recent, Linux distribution. //! Both `gnu` and `musl` libc targets are supported. RPPAL is compatible with the //! Raspberry Pi A, A+, B, B+, 2B, 3A+, 3B, 3B+, 4B, 5, CM, CM 3, CM 3+, CM 4, 400, //! Zero, Zero W and Zero 2 W. Backwards compatibility for minor revisions isn't -//! guaranteed until v1.0.0. +//! guaranteed until v1. // Used by rustdoc to link other crates to rppal's docs #![doc(html_root_url = "https://docs.rs/rppal/0.17.1")]