TheZoq2 пре 3 година
родитељ
комит
92379bbbdd
4 измењених фајлова са 9 додато и 6 уклоњено
  1. 4 1
      CHANGELOG.md
  2. 1 1
      Cargo.toml
  3. 2 2
      src/lib.rs
  4. 2 2
      src/rtc.rs

+ 4 - 1
CHANGELOG.md

@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
 
 ## [Unreleased]
 
+## [0.7.0]
+
 ### Breaking changes
 
 - MonoTimer now takes ownership of the DCB register
@@ -231,7 +233,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.1...HEAD
+[Unreleased]: https://github.com/stm32-rs/stm32f1xx-hal/compare/v0.7.0...HEAD
+[v0.7.0]: https://github.com/stm32-rs/stm32f1xx-hal/compare/v0.6.1...v0.7.0
 [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

+ 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.1"
+version = "0.7.0"
 
 [package.metadata.docs.rs]
 features = ["stm32f103", "rt", "stm32-usbd"]

+ 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.1/examples
-//! [README]: https://github.com/stm32-rs/stm32f1xx-hal/tree/v0.6.1
+//! [examples]: https://github.com/stm32-rs/stm32f1xx-hal/tree/v0.7.0/examples
+//! [README]: https://github.com/stm32-rs/stm32f1xx-hal/tree/v0.7.0
 
 #![no_std]
 #![deny(broken_intra_doc_links)]

+ 2 - 2
src/rtc.rs

@@ -24,8 +24,8 @@ const LSE_HERTZ: u32 = 32_768;
 
   1: Unless configured to another frequency using [select_frequency](struct.Rtc.html#method.select_frequency)
 
-  [examples/rtc.rs]: https://github.com/stm32-rs/stm32f1xx-hal/blob/v0.6.1/examples/rtc.rs
-  [examples/blinky_rtc.rs]: https://github.com/stm32-rs/stm32f1xx-hal/blob/v0.6.1/examples/blinky_rtc.rs
+  [examples/rtc.rs]: https://github.com/stm32-rs/stm32f1xx-hal/blob/v0.7.0/examples/rtc.rs
+  [examples/blinky_rtc.rs]: https://github.com/stm32-rs/stm32f1xx-hal/blob/v0.7.0/examples/blinky_rtc.rs
 */
 
 pub struct Rtc {