Skip to content

Commit 92379bb

Browse files
committed
Bump to v0.7.0
1 parent ef59068 commit 92379bb

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10+
## [0.7.0]
11+
1012
### Breaking changes
1113

1214
- MonoTimer now takes ownership of the DCB register
@@ -231,7 +233,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
231233

232234
- First tagged version
233235

234-
[Unreleased]: https://github.com/stm32-rs/stm32f1xx-hal/compare/v0.6.1...HEAD
236+
[Unreleased]: https://github.com/stm32-rs/stm32f1xx-hal/compare/v0.7.0...HEAD
237+
[v0.7.0]: https://github.com/stm32-rs/stm32f1xx-hal/compare/v0.6.1...v0.7.0
235238
[v0.6.0]: https://github.com/stm32-rs/stm32f1xx-hal/compare/v0.6.0...v0.6.1
236239
[v0.6.0]: https://github.com/stm32-rs/stm32f1xx-hal/compare/v0.5.3...v0.6.0
237240
[v0.5.3]: https://github.com/stm32-rs/stm32f1xx-hal/compare/v0.5.2...v0.5.3

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repository = "https://github.com/stm32-rs/stm32f1xx-hal"
99
documentation = "https://docs.rs/stm32f1xx-hal"
1010
readme = "README.md"
1111
edition = "2018"
12-
version = "0.6.1"
12+
version = "0.7.0"
1313

1414
[package.metadata.docs.rs]
1515
features = ["stm32f103", "rt", "stm32-usbd"]

src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@
8080
//! panic-halt = "0.2.0"
8181
//! ```
8282
//!
83-
//! [examples]: https://github.com/stm32-rs/stm32f1xx-hal/tree/v0.6.1/examples
84-
//! [README]: https://github.com/stm32-rs/stm32f1xx-hal/tree/v0.6.1
83+
//! [examples]: https://github.com/stm32-rs/stm32f1xx-hal/tree/v0.7.0/examples
84+
//! [README]: https://github.com/stm32-rs/stm32f1xx-hal/tree/v0.7.0
8585
8686
#![no_std]
8787
#![deny(broken_intra_doc_links)]

src/rtc.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ const LSE_HERTZ: u32 = 32_768;
2424
2525
1: Unless configured to another frequency using [select_frequency](struct.Rtc.html#method.select_frequency)
2626
27-
[examples/rtc.rs]: https://github.com/stm32-rs/stm32f1xx-hal/blob/v0.6.1/examples/rtc.rs
28-
[examples/blinky_rtc.rs]: https://github.com/stm32-rs/stm32f1xx-hal/blob/v0.6.1/examples/blinky_rtc.rs
27+
[examples/rtc.rs]: https://github.com/stm32-rs/stm32f1xx-hal/blob/v0.7.0/examples/rtc.rs
28+
[examples/blinky_rtc.rs]: https://github.com/stm32-rs/stm32f1xx-hal/blob/v0.7.0/examples/blinky_rtc.rs
2929
*/
3030

3131
pub struct Rtc {

0 commit comments

Comments
 (0)