@@ -5,9 +5,43 @@ This project adheres to [Semantic Versioning](http://semver.org/).
55
66## [ Unreleased]
77
8+ ## [ v0.6.0] - 2020-12-11
9+
810### Added
911
10- - Added USB driver for `stm32l4x2` and `stm32l4x3` devices
12+ - USB driver for `stm32l4x2` and `stm32l4x3` devices.
13+ - USART3 and UART4, with dma support.
14+ - Support for GPIOF and GPIOG.
15+ - USB driver examples.
16+ - Support for external pin interrupts (EXTI).
17+ - Implement hardware flow control for serial.
18+ - Support for CRC peripheral.
19+ - Implement `core::hash::Hasher` for the CRC peripheral.
20+ - Support for serial framing.
21+ - Support for Half-Duplex Serial.
22+ - Support for timers 5 and 6.
23+ - Bump stm32l4 to `0.11.0`.
24+ - Support for QSPI.
25+ - Support for RTC alarms.
26+ - Support for the Independant Watch Dog Timer.
27+ - VSCode configurations.
28+ - Added signature module.
29+
30+
31+ ## Changed
32+ - Reworked clock control with RCC.
33+ - Rework the DMA API.
34+ - Rework the FLASH programming API.
35+ - Rework GPIO output to support setting Speed, Pullups and drain functionality.
36+ - Switched to Github actions.
37+
38+ ### Fixed
39+ - Re-add support for GPIOD & GPIOE.
40+ - Fix enable bits for PWM.
41+ - Fix clearing serial error flag bits.
42+ - I2C 7bit adressing shift.
43+ - Fix the systick delay to support delays greater than `1 << 24`
44+ - Clean up examples, and Deps.
1145
1246## [ v0.5.0] - 2019-09-02
1347
@@ -18,8 +52,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
1852### Breaking
1953
2054 - Serial ports now use a config, instead of just the baudrate.
21- - Upgraded embedded-hal, gpio method signitures are now fallible
22- - Bumped cortex-m
55+ - Upgraded embedded-hal, gpio method signitures are now fallible.
56+ - Bumped cortex-m.
2357
2458
2559## [ v0.4.0] - 2019-05-08
@@ -158,7 +192,9 @@ This project adheres to [Semantic Versioning](http://semver.org/).
158192
159193- Initial release
160194
161- [ Unreleased ] : https://github.com/stm32-rs/stm32l4xx-hal/compare/v0.4.0...HEAD
195+ [ Unreleased ] : https://github.com/stm32-rs/stm32l4xx-hal/compare/v0.6.0...HEAD
196+ [ v0.6.0 ] : https://github.com/stm32-rs/stm32l4xx-hal/compare/v0.5.0...v0.6.0
197+ [ v0.5.0 ] : https://github.com/stm32-rs/stm32l4xx-hal/compare/v0.4.0...v0.5.0
162198[ v0.4.0 ] : https://github.com/stm32-rs/stm32l4xx-hal/compare/v0.3.6...v0.4.0
163199[ v0.3.6 ] : https://github.com/stm32-rs/stm32l4xx-hal/compare/v0.3.5...v0.3.6
164200[ v0.3.5 ] : https://github.com/stm32-rs/stm32l4xx-hal/compare/v0.3.4...v0.3.5
0 commit comments