diff --git a/CHANGELOG.md b/CHANGELOG.md index e51d3645..6a7c0901 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.6.0] - 2020-06-06 + ### Breaking changes - Bump `stm32f1` dependency (`0.11.0`) @@ -188,7 +190,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - First tagged version -[Unreleased]: https://github.com/stm32-rs/stm32f1xx-hal/compare/v0.5.3...HEAD +[Unreleased]: https://github.com/stm32-rs/stm32f1xx-hal/compare/v0.6.0...HEAD +[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 [v0.5.1]: https://github.com/stm32-rs/stm32f1xx-hal/compare/v0.5.0...v0.5.1 diff --git a/Cargo.toml b/Cargo.toml index 1b94ca98..ef5941bf 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.5.3" +version = "0.6.0" [package.metadata.docs.rs] features = ["stm32f103", "rt", "stm32-usbd"] diff --git a/README.md b/README.md index f0c35f3c..421166e5 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.5.3" +version = "0.6.0" features = ["rt", "stm32f103", "medium"] ``` @@ -186,7 +186,7 @@ be specified as part of the `Cargo.toml` definition. ```toml [dependencies.stm32f1xx-hal] -version = "0.5.3" +version = "0.6.0" features = ["stm32f100", "rt"] ``` diff --git a/src/lib.rs b/src/lib.rs index 99903e56..6163a34e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -63,8 +63,8 @@ //! panic-halt = "0.2.0" //! ``` //! -//! [examples]: https://github.com/stm32-rs/stm32f1xx-hal/tree/v0.5.3/examples -//! [README]: https://github.com/stm32-rs/stm32f1xx-hal/tree/v0.5.3 +//! [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 #![no_std] #![deny(intra_doc_link_resolution_failure)]