From fdda3795627d8d7bc78aefebebbcbc6d1b6c4e2e Mon Sep 17 00:00:00 2001 From: Diego Barrios Romero Date: Wed, 11 Nov 2020 14:13:09 +0100 Subject: [PATCH 1/2] Add html root url --- Cargo.toml | 2 +- src/lib.rs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index cfff800a2..8bde2f5ef 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ license = "MIT OR Apache-2.0" name = "embedded-hal" readme = "README.md" repository = "https://github.com/rust-embedded/embedded-hal" -version = "1.0.0-alpha.3" +version = "1.0.0-alpha.3" # remember to update html_root_url [dependencies] nb = "1" diff --git a/src/lib.rs b/src/lib.rs index 1b869a53d..088f27d94 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -404,6 +404,7 @@ //! # fn main() {} //! ``` +#![doc(html_root_url = "https://docs.rs/embedded-hal/1.0.0-alpha.3")] #![deny(missing_docs)] #![no_std] From 060c75736bb964008f29d95b1b447d299d951e2b Mon Sep 17 00:00:00 2001 From: Diego Barrios Romero Date: Wed, 11 Nov 2020 14:13:55 +0100 Subject: [PATCH 2/2] Prepare 1.0.0-alpha.4 release --- CHANGELOG.md | 5 ++++- Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ccbd0d6e..6c9c9cd8d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ### Changed +## [v1.0.0-alpha.4] - 2020-11-11 + ### Fixed - Support for I2C addressing modes in `Transactional` I2C traits. @@ -148,7 +150,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). Initial release -[Unreleased]: https://github.com/rust-embedded/embedded-hal/compare/v1.0.0-alpha.3...HEAD +[Unreleased]: https://github.com/rust-embedded/embedded-hal/compare/v1.0.0-alpha.4...HEAD +[v1.0.0-alpha.4]: https://github.com/rust-embedded/embedded-hal/compare/v1.0.0-alpha.3...v1.0.0-alpha.4 [v1.0.0-alpha.3]: https://github.com/rust-embedded/embedded-hal/compare/v1.0.0-alpha.2...v1.0.0-alpha.3 [v1.0.0-alpha.2]: https://github.com/rust-embedded/embedded-hal/compare/v1.0.0-alpha.1...v1.0.0-alpha.2 [v1.0.0-alpha.1]: https://github.com/rust-embedded/embedded-hal/compare/v0.2.3...v1.0.0-alpha.1 diff --git a/Cargo.toml b/Cargo.toml index 8bde2f5ef..d7b8bec8d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ license = "MIT OR Apache-2.0" name = "embedded-hal" readme = "README.md" repository = "https://github.com/rust-embedded/embedded-hal" -version = "1.0.0-alpha.3" # remember to update html_root_url +version = "1.0.0-alpha.4" # remember to update html_root_url [dependencies] nb = "1" diff --git a/src/lib.rs b/src/lib.rs index 088f27d94..0ebc85165 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -404,7 +404,7 @@ //! # fn main() {} //! ``` -#![doc(html_root_url = "https://docs.rs/embedded-hal/1.0.0-alpha.3")] +#![doc(html_root_url = "https://docs.rs/embedded-hal/1.0.0-alpha.4")] #![deny(missing_docs)] #![no_std]