Skip to content

Commit cf24ffc

Browse files
committed
fixes & updates
1 parent 70894b4 commit cf24ffc

File tree

4 files changed

+15
-9
lines changed

4 files changed

+15
-9
lines changed

CHANGELOG.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,15 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

8-
## [Unreleased]
8+
## [v0.13.1] - 2022-04-20
99

1010
### Fixed
11-
- Remove the defmt feature/dependency name workaround
11+
12+
- Fix `embedded_hal 1.0-alpha.7` version, public `PinMode`, update deps [#485]
13+
- Remove the defmt feature/dependency name workaround [#479]
14+
15+
[#479]: https://github.com/stm32-rs/stm32f4xx-hal/pull/479
16+
[#485]: https://github.com/stm32-rs/stm32f4xx-hal/pull/485
1217

1318
## [v0.13.0] - 2022-04-04
1419

@@ -647,7 +652,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
647652

648653
- Support for stm32f407 and stm32f429.
649654

650-
[Unreleased]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.13.0...HEAD
655+
[Unreleased]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.13.1...HEAD
656+
[v0.13.1]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.13.0...v0.13.1
651657
[v0.13.0]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.12.0...v0.13.0
652658
[v0.12.0]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.11.1...v0.12.0
653659
[v0.11.1]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.11.0...v0.11.1

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ license = "0BSD"
2020
name = "stm32f4xx-hal"
2121
readme = "README.md"
2222
repository = "https://github.com/stm32-rs/stm32f4xx-hal"
23-
version = "0.13.0"
23+
version = "0.13.1"
2424

2525
[package.metadata.docs.rs]
2626
features = ["stm32f429", "usb_fs", "can", "i2s", "fsmc_lcd"]
2727
targets = ["thumbv7em-none-eabihf"]
2828

2929
[dependencies]
30-
defmt = { version = "0.3.0", optional = true }
30+
defmt = { version = "0.3.1", optional = true }
3131
bxcan = { version = "0.6", optional = true }
3232
cortex-m = "0.7.4"
3333
cortex-m-rt = "0.7"
@@ -52,15 +52,15 @@ version = "0.3"
5252
default-features = false
5353

5454
[dependencies.embedded-hal-one]
55-
version = "1.0.0-alpha.7"
55+
version = "=1.0.0-alpha.7"
5656
package = "embedded-hal"
5757

5858
[dependencies.stm32_i2s_v12x]
5959
version = "0.2.0"
6060
optional = true
6161

6262
[dev-dependencies]
63-
defmt-rtt = "0.3.0"
63+
defmt-rtt = "0.3.2"
6464
panic-semihosting = "0.5.3"
6565
cortex-m-semihosting = "0.3.3"
6666
heapless = "0.7.5"

README.md

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

7676
[dependencies.stm32f4xx-hal]
77-
version = "0.13"
77+
version = "0.13.1"
7878
features = ["stm32f407"] # replace the model of your microcontroller here
7979
```
8080

src/gpio.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ use core::marker::PhantomData;
5959
mod alt;
6060
pub(crate) use alt::{Const, PinA, SetAlternate};
6161
mod convert;
62-
use convert::PinMode;
62+
pub use convert::PinMode;
6363
mod partially_erased;
6464
pub use partially_erased::{PEPin, PartiallyErasedPin};
6565
mod erased;

0 commit comments

Comments
 (0)