Skip to content

Commit b7060db

Browse files
committed
Release v0.5.3
1 parent c07ff32 commit b7060db

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10+
## [v0.5.3] - 2020-01-20
11+
1012
- Add `InputPin` impl for generic open drain outputs
1113
- Implement `Read<u8>` / `Write<u8>` for `Serial` (#171)
14+
- Fix docs.rs build
1215

1316
## [v0.5.2] - 2019-12-15
1417

@@ -161,7 +164,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
161164

162165
- First tagged version
163166

164-
[Unreleased]: https://github.com/stm32-rs/stm32f1xx-hal/compare/v0.5.2...HEAD
167+
[Unreleased]: https://github.com/stm32-rs/stm32f1xx-hal/compare/v0.5.3...HEAD
168+
[v0.5.3]: https://github.com/stm32-rs/stm32f1xx-hal/compare/v0.5.2...v0.5.3
165169
[v0.5.2]: https://github.com/stm32-rs/stm32f1xx-hal/compare/v0.5.1...v0.5.2
166170
[v0.5.1]: https://github.com/stm32-rs/stm32f1xx-hal/compare/v0.5.0...v0.5.1
167171
[v0.5.0]: https://github.com/stm32-rs/stm32f1xx-hal/compare/v0.4.0...v0.5.0

Cargo.toml

Lines changed: 1 addition & 1 deletion
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.5.2"
12+
version = "0.5.3"
1313

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

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ cortex-m-rt = "0.6.11"
5252
panic-halt = "0.2.0"
5353

5454
[dependencies.stm32f1xx-hal]
55-
version = "0.5.2"
55+
version = "0.5.3"
5656
features = ["rt", "stm32f103", "medium"]
5757
```
5858

@@ -181,7 +181,7 @@ be specified as part of the `Cargo.toml` definition.
181181

182182
```toml
183183
[dependencies.stm32f1xx-hal]
184-
version = "0.5.2"
184+
version = "0.5.3"
185185
features = ["stm32f100", "rt"]
186186
```
187187

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@
5959
//! panic-halt = "0.2.0"
6060
//! ```
6161
//!
62-
//! [examples]: https://github.com/stm32-rs/stm32f1xx-hal/tree/v0.5.2/examples
63-
//! [README]: https://github.com/stm32-rs/stm32f1xx-hal/tree/v0.5.2
62+
//! [examples]: https://github.com/stm32-rs/stm32f1xx-hal/tree/v0.5.3/examples
63+
//! [README]: https://github.com/stm32-rs/stm32f1xx-hal/tree/v0.5.3
6464
6565
#![no_std]
6666

0 commit comments

Comments
 (0)