TheZoq2 преди 3 години
родител
ревизия
4bbff64ed4
променени са 4 файла, в които са добавени 9 реда и са изтрити 6 реда
  1. 4 1
      CHANGELOG.md
  2. 1 1
      Cargo.toml
  3. 2 2
      README.md
  4. 2 2
      src/lib.rs

+ 4 - 1
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

+ 1 - 1
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"]

+ 2 - 2
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"]
 ```
 

+ 2 - 2
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)]