From 9a00079de3c40ca4953346b043a994bb419fa06a Mon Sep 17 00:00:00 2001 From: Diego Barrios Romero Date: Wed, 14 Jul 2021 21:11:08 +0200 Subject: [PATCH] Prepare 0.3.1 release --- CHANGELOG.md | 7 ++++++- Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 62a434b..ab33afd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +... + +## [0.3.1] - 2021-07-14 + ### Fixed - Added `enable()` call to examples. @@ -51,7 +55,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. This is the initial release to crates.io. All changes will be documented in this CHANGELOG. -[Unreleased]: https://github.com/eldruin/pwm-pca9685-rs/compare/v0.3.0...HEAD +[Unreleased]: https://github.com/eldruin/pwm-pca9685-rs/compare/v0.3.1...HEAD +[0.3.1]: https://github.com/eldruin/pwm-pca9685-rs/compare/v0.3.0...v0.3.1 [0.3.0]: https://github.com/eldruin/pwm-pca9685-rs/compare/v0.2.0...v0.3.0 [0.2.0]: https://github.com/eldruin/pwm-pca9685-rs/compare/v0.1.2...v0.2.0 [0.1.2]: https://github.com/eldruin/pwm-pca9685-rs/compare/v0.1.1...v0.1.2 diff --git a/Cargo.toml b/Cargo.toml index dc2bbe9..30f9c0f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pwm-pca9685" -version = "0.3.0" # remember to update html_root_url +version = "0.3.1" # remember to update html_root_url authors = ["Diego Barrios Romero "] repository = "https://github.com/eldruin/pwm-pca9685-rs" license = "MIT OR Apache-2.0" diff --git a/src/lib.rs b/src/lib.rs index fc7f6bb..de0b8ea 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -240,7 +240,7 @@ #![deny(missing_docs, unsafe_code)] #![no_std] -#![doc(html_root_url = "https://docs.rs/pwm-pca9685/0.3.0")] +#![doc(html_root_url = "https://docs.rs/pwm-pca9685/0.3.1")] use embedded_hal as hal;