Skip to content

Commit f91f1bb

Browse files
committed
Update README and CHANGELOG, bump version to 0.9.2
1 parent c4e8ae0 commit f91f1bb

File tree

3 files changed

+17
-10
lines changed

3 files changed

+17
-10
lines changed

rp2040-hal/CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ 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+
## [0.9.2]
9+
10+
### Changed
11+
12+
- Update embedded-hal 1 to version 1.0.0.
13+
(This is the version of embedded-hal activated by feature
14+
"eh1_0_alpha". Embedded-hal 0.9 is still supported by default.) - @jannic
15+
816
## [0.9.1]
917

1018
### Added
@@ -339,7 +347,8 @@ The Minimum-Supported Rust Version (MSRV) for this release is 1.54.
339347

340348
- Initial release
341349

342-
[Unreleased]: https://github.com/rp-rs/rp-hal/compare/v0.9.1...HEAD
350+
[Unreleased]: https://github.com/rp-rs/rp-hal/compare/v0.9.2...HEAD
351+
[0.9.2]: https://github.com/rp-rs/rp-hal/compare/v0.9.1...v0.9.2
343352
[0.9.1]: https://github.com/rp-rs/rp-hal/compare/v0.9.0...v0.9.1
344353
[0.9.0]: https://github.com/rp-rs/rp-hal/compare/v0.8.1...v0.9.0
345354
[0.8.1]: https://github.com/rp-rs/rp-hal/compare/v0.8.0...v0.8.1

rp2040-hal/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rp2040-hal"
3-
version = "0.9.1"
3+
version = "0.9.2"
44
authors = ["The rp-rs Developers"]
55
edition = "2021"
66
homepage = "https://github.com/rp-rs/rp-hal"

rp2040-hal/README.md

Lines changed: 6 additions & 8 deletions
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.1"
73+
rp2040-hal = "0.9.2"
7474
```
7575

7676
To obtain a copy of the source code (e.g. if you want to propose a bug-fix or
@@ -94,16 +94,14 @@ proposed features (and known issues).
9494

9595
### Support for embedded-hal 1.0
9696

97-
We plan to support embedded-hal 1.0 soon after it is released.
98-
99-
For now, there is preliminary support for alpha/rc versions of embedded-hal, which can
100-
be enabled with the feature `eh1_0_alpha`. Please note that this support does not
97+
This crate now supports embedded-hal 1.0, albeit still optional and
98+
hidden behind the `eh1_0_alpha` feature flag. Please note that this support does not
10199
provide any semver compatibility guarantees: With that feature activated, there
102100
will be breaking changes even in minor versions of rp2040-hal.
103101

104-
Support for embedded-hal 1.0(-alpha/rc) exists in parallel to support for
105-
embedded-hal 0.2: Traits of both versions are implemented and can be used
106-
at the same time.
102+
Support for embedded-hal 1.0 exists in parallel to support for
103+
embedded-hal 0.2: Traits of both versions are implemented and can be
104+
used at the same time.
107105

108106
<!-- CONTRIBUTING -->
109107
## Contributing

0 commit comments

Comments
 (0)