Skip to content

Commit 3ca1f36

Browse files
committed
v0.3.5
1 parent 5a8d5c6 commit 3ca1f36

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ This project adheres to [Semantic Versioning](http://semver.org/).
55

66
## [Unreleased]
77

8+
## [v0.3.5] - 2019-01-07
9+
10+
## Added
11+
12+
- Rng implementation
13+
- GPIOE support
14+
- `fmt::Write` for serial Tx
15+
816
## [v0.3.4] - 2018-12-31
917

1018
## Fixed
@@ -104,7 +112,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
104112

105113
- Initial release
106114

107-
[Unreleased]: https://github.com/stm32-rs/stm32l4xx-hal/compare/v0.3.4...HEAD
115+
[Unreleased]: https://github.com/stm32-rs/stm32l4xx-hal/compare/v0.3.5...HEAD
116+
[v0.3.5]: https://github.com/stm32-rs/stm32l4xx-hal/compare/v0.3.4...v0.3.5
108117
[v0.3.4]: https://github.com/stm32-rs/stm32l4xx-hal/compare/v0.3.3...v0.3.4
109118
[v0.3.3]: https://github.com/stm32-rs/stm32l4xx-hal/compare/v0.3.2...v0.3.3
110119
[v0.3.2]: https://github.com/stm32-rs/stm32l4xx-hal/compare/v0.3.1...v0.3.2

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "stm32l4xx-hal"
3-
version = "0.3.4"
3+
version = "0.3.5"
44
authors = ["Scott Mabin <[email protected]>"]
55
description = "Hardware abstraction layer for the stm32l4xx chips"
66
keywords = ["no-std", "stm32l4xx", "stm32l4", "embedded", "embedded-hal"]

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,5 +71,5 @@ pub mod datetime;
7171
pub mod tsc;
7272
#[cfg(any(feature = "stm32l4x1", feature = "stm32l4x2", feature = "stm32l4x3", feature = "stm32l4x5", feature = "stm32l4x6"))]
7373
pub mod i2c;
74-
#[cfg(any(feature = "stm32l4x2"))]
74+
#[cfg(any(feature = "stm32l4x1", feature = "stm32l4x2", feature = "stm32l4x3", feature = "stm32l4x5", feature = "stm32l4x6"))]
7575
pub mod rng;

0 commit comments

Comments
 (0)