File tree Expand file tree Collapse file tree 3 files changed +17
-10
lines changed Expand file tree Collapse file tree 3 files changed +17
-10
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6
6
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
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
+
8
16
## [ 0.9.1]
9
17
10
18
### Added
@@ -339,7 +347,8 @@ The Minimum-Supported Rust Version (MSRV) for this release is 1.54.
339
347
340
348
- Initial release
341
349
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
343
352
[ 0.9.1 ] : https://github.com/rp-rs/rp-hal/compare/v0.9.0...v0.9.1
344
353
[ 0.9.0 ] : https://github.com/rp-rs/rp-hal/compare/v0.8.1...v0.9.0
345
354
[ 0.8.1 ] : https://github.com/rp-rs/rp-hal/compare/v0.8.0...v0.8.1
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " rp2040-hal"
3
- version = " 0.9.1 "
3
+ version = " 0.9.2 "
4
4
authors = [" The rp-rs Developers" ]
5
5
edition = " 2021"
6
6
homepage = " https://github.com/rp-rs/rp-hal"
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ https://github.com/rp-rs/rp-hal-boards/ for more details.
70
70
To include this crate in your project, amend your ` Cargo.toml ` file to include
71
71
72
72
``` toml
73
- rp2040-hal = " 0.9.1 "
73
+ rp2040-hal = " 0.9.2 "
74
74
```
75
75
76
76
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).
94
94
95
95
### Support for embedded-hal 1.0
96
96
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
101
99
provide any semver compatibility guarantees: With that feature activated, there
102
100
will be breaking changes even in minor versions of rp2040-hal.
103
101
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.
107
105
108
106
<!-- CONTRIBUTING -->
109
107
## Contributing
You can’t perform that action at this time.
0 commit comments