Skip to content

Commit 7b04000

Browse files
authored
Merge pull request #717 from jannic/release-0.9.1
Prepare release 0.9.1, update changelog
2 parents 357f4d6 + f9c1346 commit 7b04000

File tree

3 files changed

+26
-7
lines changed

3 files changed

+26
-7
lines changed

rp2040-hal/CHANGELOG.md

+23-4
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,29 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [Unreleased]
8+
## [0.9.1]
99

10-
## Fixed
10+
### Added
11+
12+
- Add function to enable multiple PWM slices at the same time - #668 @jlpettersson
13+
- Add uart\_is\_busy() method - #711 @Rahix
14+
- Re-export fugit - #573 @jannic
15+
- Add function to clear PIO fifos - #670 @ThadHouse
16+
- Implement WriteIter and WriteIterRead - #703 @thejpster
17+
- Implement InputPin for all pin configurations - #689 @jannic
18+
- Provide functions to access watchdog scratch registers - #685 @jannic
19+
- Implement reset() and halt() functions - #613 @jannic
20+
21+
### Fixed
22+
23+
- Fix USB PLL's VCO frequency according to updated datasheet - #688 @ithinuel, @jannic
24+
- Fix UART transmit\_flushed method - #713 @jannic
25+
- Fix calculation of pll frequency for refdiv != 1 - #691 @vinsynth
26+
27+
### Changed
1128

12-
- Fixed USB PLL's VCO frequency according to updated datasheet - #688 @ithinuel, @jannic
29+
- Improve documentation - #692 #696 #697 #698 #699 #702 #704 #709 #714 @9names @fu5ha @ithinuel @jannic
30+
- Migrate to eh1\_0 rc 1 - #681 @ithinuel
1331

1432
## [0.9.0]
1533

@@ -321,7 +339,8 @@ The Minimum-Supported Rust Version (MSRV) for this release is 1.54.
321339

322340
- Initial release
323341

324-
[Unreleased]: https://github.com/rp-rs/rp-hal/compare/v0.9.0...HEAD
342+
[Unreleased]: https://github.com/rp-rs/rp-hal/compare/v0.9.1...HEAD
343+
[0.9.1]: https://github.com/rp-rs/rp-hal/compare/v0.9.0...v0.9.1
325344
[0.9.0]: https://github.com/rp-rs/rp-hal/compare/v0.8.1...v0.9.0
326345
[0.8.1]: https://github.com/rp-rs/rp-hal/compare/v0.8.0...v0.8.1
327346
[0.8.0]: https://github.com/rp-rs/rp-hal/compare/v0.7.0...v0.8.0

rp2040-hal/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rp2040-hal"
3-
version = "0.9.0"
3+
version = "0.9.1"
44
authors = ["The rp-rs Developers"]
55
edition = "2021"
66
homepage = "https://github.com/rp-rs/rp-hal"
@@ -197,4 +197,4 @@ required-features = ["critical-section-impl"]
197197

198198
[[example]]
199199
name = "gpio_dyn_pin_array"
200-
required-features = ["critical-section-impl"]
200+
required-features = ["critical-section-impl"]

rp2040-hal/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ https://github.com/rp-rs/rp-hal-boards/ for more details.
7070
To include this crate in your project, amend your `Cargo.toml` file to include
7171

7272
```toml
73-
rp2040-hal = "0.9.0"
73+
rp2040-hal = "0.9.1"
7474
```
7575

7676
To obtain a copy of the source code (e.g. if you want to propose a bug-fix or

0 commit comments

Comments
 (0)