Skip to content

Commit

Permalink
Bump to v0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
TheZoq2 committed Oct 17, 2020
1 parent ef59068 commit 92379bb
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)]
Expand Down
4 changes: 2 additions & 2 deletions src/rtc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 92379bb

Please sign in to comment.