Skip to content

Commit d9bbe3c

Browse files
committed
release 0.16.2
1 parent 0fd321e commit d9bbe3c

File tree

4 files changed

+14
-7
lines changed

4 files changed

+14
-7
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [v0.16.2] - 2023-06-27
11+
1012
### Changed
1113

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

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

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

2830
### Changed
2931

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

3335
### Added
3436

35-
- `into_mode` for `ErasedPin` and `PartiallyErasedPin`
37+
- `into_mode` for `ErasedPin` and `PartiallyErasedPin` [#647]
3638
- Extended 64-bit monotonic timer [#640]
3739
- Basic blocking QSPI interface [#645]
3840
- Rtc: add subsecond reading, add interrupts [#446]
@@ -46,8 +48,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
4648
[#632]: https://github.com/stm32-rs/stm32f4xx-hal/pull/632
4749
[#635]: https://github.com/stm32-rs/stm32f4xx-hal/pull/635
4850
[#636]: https://github.com/stm32-rs/stm32f4xx-hal/pull/636
51+
[#637]: https://github.com/stm32-rs/stm32f4xx-hal/pull/637
4952
[#640]: https://github.com/stm32-rs/stm32f4xx-hal/pull/640
5053
[#645]: https://github.com/stm32-rs/stm32f4xx-hal/pull/645
54+
[#647]: https://github.com/stm32-rs/stm32f4xx-hal/pull/647
55+
[#652]: https://github.com/stm32-rs/stm32f4xx-hal/pull/652
5156
[#655]: https://github.com/stm32-rs/stm32f4xx-hal/pull/655
5257

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

895900
- Support for stm32f407 and stm32f429.
896901

897-
[Unreleased]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.16.1...HEAD
902+
[Unreleased]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.16.2...HEAD
903+
[v0.16.2]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.16.1...v0.16.2
898904
[v0.16.1]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.16.0...v0.16.1
899905
[v0.16.0]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.15.0...v0.16.0
900906
[v0.15.0]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.14.0...v0.15.0

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ license = "0BSD"
2020
name = "stm32f4xx-hal"
2121
readme = "README.md"
2222
repository = "https://github.com/stm32-rs/stm32f4xx-hal"
23-
version = "0.16.1"
23+
version = "0.16.2"
2424

2525
[package.metadata.docs.rs]
2626
features = ["stm32f429", "usb_fs", "can", "i2s", "fsmc_lcd", "rtic", "defmt"]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ cortex-m-rt = "0.7"
9393
panic-halt = "0.2"
9494

9595
[dependencies.stm32f4xx-hal]
96-
version = "0.16.1"
96+
version = "0.16.2"
9797
features = ["stm32f407"] # replace the model of your microcontroller here
9898
# and add other required features
9999
```

src/serial/uart_impls.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ pub trait Instance: crate::Sealed + rcc::Enable + rcc::Reset + rcc::BusClock + C
3131
}
3232

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

0 commit comments

Comments
 (0)