Skip to content

Commit 96d51e2

Browse files
committed
Sync with backport release
1 parent f170ec4 commit 96d51e2

File tree

4 files changed

+24
-10
lines changed

4 files changed

+24
-10
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,20 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
3131

3232
- Fix wrong timer frequency calculation and unexpected panics ([#338])
3333

34+
## [v0.9.2] - 2023-02-20
35+
36+
### Added
37+
38+
- Add missing ADC channels ([#337])
39+
40+
### Fixed
41+
42+
- Fix wrong timer frequency calculation and unexpected panics ([#338])
43+
44+
### Changed
45+
46+
- The MSRV was bumped to 1.59 ([#340])
47+
3448
## [v0.9.1] - 2022-09-07
3549

3650
### Added
@@ -581,6 +595,7 @@ let clocks = rcc
581595
[defmt]: https://github.com/knurling-rs/defmt
582596
[filter]: https://defmt.ferrous-systems.com/filtering.html
583597

598+
[#340]: https://github.com/stm32-rs/stm32f3xx-hal/pull/340
584599
[#338]: https://github.com/stm32-rs/stm32f3xx-hal/pull/338
585600
[#337]: https://github.com/stm32-rs/stm32f3xx-hal/pull/337
586601
[#335]: https://github.com/stm32-rs/stm32f3xx-hal/pull/335

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ name = "stm32f3xx-hal"
1313
readme = "README.md"
1414
repository = "https://github.com/stm32-rs/stm32f3xx-hal"
1515
documentation = "https://docs.rs/stm32f3xx-hal"
16-
version = "0.9.1"
16+
version = "0.9.2"
1717
exclude = ["codegen", ".markdownlint.yml"]
1818
resolver = "2"
1919
rust-version = "1.59"

README.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -47,17 +47,16 @@ Almost all of the implementation was shamelessly adapted from the
4747
Cargo.toml:
4848

4949
```toml
50-
[package]
51-
# ...
52-
resolver = "2"
53-
5450
[dependencies]
55-
cortex-m = "0.7.2"
56-
cortex-m-rt = { version = "0.6.13", features = ["device"] }
57-
# Panic behaviour, see https://crates.io/keywords/panic-impl for alternatives
51+
# Only set the critical section feature, if you are using a bare-metal platform
52+
# without any RTOS
53+
# See https://github.com/rust-embedded/critical-section for further details.
54+
cortex-m = { version = "0.7.4", features = ["critical-section-single-core"]}
55+
cortex-m-rt = { version = "0.7.3", features = ["device"] }
56+
# Panic behavior, see https://crates.io/keywords/panic-impl for alternatives
5857
panic-halt = "0.2.0"
5958
# Replace stm32f303xc with your target chip, see next section for more info
60-
stm32f3xx-hal = { version = "0.9.1", features = ["ld", "rt", "stm32f303xc"] }
59+
stm32f3xx-hal = { version = "0.9.2", features = ["ld", "rt", "stm32f303xc"] }
6160
```
6261

6362
We also need to tell Rust about target architecture and how to link our

release.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# cargo-release configuration
22

33
tag-message = "{{version}}"
4-
dev-version = false
54
pre-release-commit-message = "Release v{{version}}"
5+
consolidate-commits = false
66
push-remote = "upstream"
77

88
# Change the changelog's `Unreleased` section to refer to this release and

0 commit comments

Comments
 (0)