From 218bcb1a459f4aae54f4d9a5854885cdb6c20126 Mon Sep 17 00:00:00 2001 From: Scott Mabin Date: Wed, 8 May 2019 18:23:58 +0100 Subject: [PATCH] v0.4.0 --- CHANGELOG.md | 19 ++++++++++++++++--- Cargo.toml | 2 +- 2 files changed, 17 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3fc45dac..96c82fa4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,14 +5,26 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.4.0] - 2019-05-08 + +### Added + + - PWM support for select timers + - More GPIO support + +### Fixed + + - More debug and Eq derives where appropriate + - Updated to stm32-rs v0.7.0 which fixes [#32](https://github.com/stm32-rs/stm32l4xx-hal/issues/32) for stm32l4x5 and stm32l4x6 devices + ## [v0.3.6] - 2019-02-11 -## Added +### Added - GPIOE Support - MSI Clock support -## Fixed +### Fixed - The TSC `aquire` did not reset the channel select register after aquisition - The default charge high and charge low time for the TSC were fixed at the max, this now has a sane default and can be configured with the TSC config. @@ -129,7 +141,8 @@ This project adheres to [Semantic Versioning](http://semver.org/). - Initial release -[Unreleased]: https://github.com/stm32-rs/stm32l4xx-hal/compare/v0.3.6...HEAD +[Unreleased]: https://github.com/stm32-rs/stm32l4xx-hal/compare/v0.4.0...HEAD +[v0.4.0]: https://github.com/stm32-rs/stm32l4xx-hal/compare/v0.3.6...v0.4.0 [v0.3.6]: https://github.com/stm32-rs/stm32l4xx-hal/compare/v0.3.5...v0.3.6 [v0.3.5]: https://github.com/stm32-rs/stm32l4xx-hal/compare/v0.3.4...v0.3.5 [v0.3.4]: https://github.com/stm32-rs/stm32l4xx-hal/compare/v0.3.3...v0.3.4 diff --git a/Cargo.toml b/Cargo.toml index 594dad94..3fd4c518 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stm32l4xx-hal" -version = "0.3.6" +version = "0.4.0" authors = ["Scott Mabin "] description = "Hardware abstraction layer for the stm32l4xx chips" keywords = ["no-std", "stm32l4xx", "stm32l4", "embedded", "embedded-hal"]