From 4bbff64ed47049adf1d665cde0056692fac4918c Mon Sep 17 00:00:00 2001 From: TheZoq2 Date: Thu, 25 Jun 2020 18:07:48 +0200 Subject: [PATCH] Bump version to v0.6.1 --- CHANGELOG.md | 5 ++++- Cargo.toml | 2 +- README.md | 4 ++-- src/lib.rs | 4 ++-- 4 files changed, 9 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f9d60dc3..7ddf62ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.6.1] - 2020-06-25 + ### Added - Add runtime-reconfigurable GPIO pins @@ -207,7 +209,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - First tagged version -[Unreleased]: https://github.com/stm32-rs/stm32f1xx-hal/compare/v0.6.0...HEAD +[Unreleased]: https://github.com/stm32-rs/stm32f1xx-hal/compare/v0.6.1...HEAD +[v0.6.0]: https://github.com/stm32-rs/stm32f1xx-hal/compare/v0.6.0...v0.6.1 [v0.6.0]: https://github.com/stm32-rs/stm32f1xx-hal/compare/v0.5.3...v0.6.0 [v0.5.3]: https://github.com/stm32-rs/stm32f1xx-hal/compare/v0.5.2...v0.5.3 [v0.5.2]: https://github.com/stm32-rs/stm32f1xx-hal/compare/v0.5.1...v0.5.2 diff --git a/Cargo.toml b/Cargo.toml index ef5941bf..c71c8a2e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ repository = "https://github.com/stm32-rs/stm32f1xx-hal" documentation = "https://docs.rs/stm32f1xx-hal" readme = "README.md" edition = "2018" -version = "0.6.0" +version = "0.6.1" [package.metadata.docs.rs] features = ["stm32f103", "rt", "stm32-usbd"] diff --git a/README.md b/README.md index fa468726..21610b4e 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ cortex-m-rt = "0.6.11" panic-halt = "0.2.0" [dependencies.stm32f1xx-hal] -version = "0.6.0" +version = "0.6.1" features = ["rt", "stm32f103", "medium"] ``` @@ -186,7 +186,7 @@ be specified as part of the `Cargo.toml` definition. ```toml [dependencies.stm32f1xx-hal] -version = "0.6.0" +version = "0.6.1" features = ["stm32f100", "rt"] ``` diff --git a/src/lib.rs b/src/lib.rs index 574f7a10..5e240ce7 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -80,8 +80,8 @@ //! panic-halt = "0.2.0" //! ``` //! -//! [examples]: https://github.com/stm32-rs/stm32f1xx-hal/tree/v0.6.0/examples -//! [README]: https://github.com/stm32-rs/stm32f1xx-hal/tree/v0.6.0 +//! [examples]: https://github.com/stm32-rs/stm32f1xx-hal/tree/v0.6.1/examples +//! [README]: https://github.com/stm32-rs/stm32f1xx-hal/tree/v0.6.1 #![no_std] #![deny(intra_doc_link_resolution_failure)]