Skip to content

Commit

Permalink
Merge pull request #661 from stm32-rs/release-0.16.2
Browse files Browse the repository at this point in the history
release 0.16.2
  • Loading branch information
burrbull authored Jun 27, 2023
2 parents 0fd321e + d9bbe3c commit 6ab795a
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 deletions.
16 changes: 11 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [v0.16.2] - 2023-06-27

### Changed

- enable `defmt` feature for VSCode, `set_alarm` takes `Into<AlarmDay>` [#660]
Expand All @@ -21,9 +23,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [v0.16.1] - 2023-06-24

- bors bot replaced with GH merge queue
- Integrate new version of stm32_i2s (v0.5) to enable full-duplex operation
- Add a rtic example to show how to do full-duplex i2s
- bors bot replaced with GH merge queue [#652]
- Integrate new version of stm32_i2s (v0.5) to enable full-duplex operation [#637]
- Add a rtic example to show how to do full-duplex i2s [#637]

### Changed

Expand All @@ -32,7 +34,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

### Added

- `into_mode` for `ErasedPin` and `PartiallyErasedPin`
- `into_mode` for `ErasedPin` and `PartiallyErasedPin` [#647]
- Extended 64-bit monotonic timer [#640]
- Basic blocking QSPI interface [#645]
- Rtc: add subsecond reading, add interrupts [#446]
Expand All @@ -46,8 +48,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
[#632]: https://github.com/stm32-rs/stm32f4xx-hal/pull/632
[#635]: https://github.com/stm32-rs/stm32f4xx-hal/pull/635
[#636]: https://github.com/stm32-rs/stm32f4xx-hal/pull/636
[#637]: https://github.com/stm32-rs/stm32f4xx-hal/pull/637
[#640]: https://github.com/stm32-rs/stm32f4xx-hal/pull/640
[#645]: https://github.com/stm32-rs/stm32f4xx-hal/pull/645
[#647]: https://github.com/stm32-rs/stm32f4xx-hal/pull/647
[#652]: https://github.com/stm32-rs/stm32f4xx-hal/pull/652
[#655]: https://github.com/stm32-rs/stm32f4xx-hal/pull/655

## [v0.16.0] - 2023-05-07
Expand Down Expand Up @@ -894,7 +899,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

- Support for stm32f407 and stm32f429.

[Unreleased]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.16.1...HEAD
[Unreleased]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.16.2...HEAD
[v0.16.2]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.16.1...v0.16.2
[v0.16.1]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.16.0...v0.16.1
[v0.16.0]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.15.0...v0.16.0
[v0.15.0]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.14.0...v0.15.0
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ license = "0BSD"
name = "stm32f4xx-hal"
readme = "README.md"
repository = "https://github.com/stm32-rs/stm32f4xx-hal"
version = "0.16.1"
version = "0.16.2"

[package.metadata.docs.rs]
features = ["stm32f429", "usb_fs", "can", "i2s", "fsmc_lcd", "rtic", "defmt"]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ cortex-m-rt = "0.7"
panic-halt = "0.2"

[dependencies.stm32f4xx-hal]
version = "0.16.1"
version = "0.16.2"
features = ["stm32f407"] # replace the model of your microcontroller here
# and add other required features
```
Expand Down
1 change: 1 addition & 0 deletions src/serial/uart_impls.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ pub trait Instance: crate::Sealed + rcc::Enable + rcc::Reset + rcc::BusClock + C
}

pub trait RegisterBlockImpl: crate::Sealed {
#[allow(clippy::new_ret_no_self)]
fn new<UART: Instance<RegisterBlock = Self>, WORD>(
uart: UART,
pins: (impl Into<UART::Tx<PushPull>>, impl Into<UART::Rx<PushPull>>),
Expand Down

0 comments on commit 6ab795a

Please sign in to comment.