File tree 4 files changed +7
-6
lines changed
4 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ v0.4.0] - 2024-01-10
11
+
10
12
### Changed
11
13
- Updated to ` embedded-hal ` ` 1.0.0 ` release ([ API changes] ( https://github.com/rust-embedded/embedded-hal/blob/master/embedded-hal/CHANGELOG.md#v100---2023-12-28 ) )
12
14
- Updated to ` embedded-hal-nb ` ` 1.0.0 ` release ([ API changes] ( https://github.com/rust-embedded/embedded-hal/blob/master/embedded-hal-nb/CHANGELOG.md#v100---2023-12-28 ) )
@@ -150,7 +152,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
150
152
151
153
Initial release
152
154
153
- [ Unreleased ] : https://github.com/rust-embedded/linux-embedded-hal/compare/v0.4.0-alpha.4...HEAD
155
+ [ Unreleased ] : https://github.com/rust-embedded/linux-embedded-hal/compare/v0.4.0...HEAD
156
+ [ v0.4.0 ] : https://github.com/rust-embedded/linux-embedded-hal/compare/v0.4.0-alpha.4...v0.4.0
154
157
[ v0.4.0-alpha.4 ] : https://github.com/rust-embedded/linux-embedded-hal/compare/v0.4.0-alpha.3...v0.4.0-alpha.4
155
158
[ v0.4.0-alpha.3 ] : https://github.com/rust-embedded/linux-embedded-hal/compare/v0.4.0-alpha.2...v0.4.0-alpha.3
156
159
[ v0.4.0-alpha.2 ] : https://github.com/rust-embedded/linux-embedded-hal/compare/v0.4.0-alpha.1...v0.4.0-alpha.2
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ keywords = ["Linux", "hal"]
9
9
license = " MIT OR Apache-2.0"
10
10
name = " linux-embedded-hal"
11
11
repository = " https://github.com/rust-embedded/linux-embedded-hal"
12
- version = " 0.4.0-alpha.4 "
12
+ version = " 0.4.0"
13
13
edition = " 2018"
14
14
15
15
[features ]
Original file line number Diff line number Diff line change 1
1
Copyright (c) 2018 Jorge Aparicio
2
+ Copyright (c) 2019-2024 The Rust embedded linux team and contributors.
2
3
3
4
Permission is hereby granted, free of charge, to any
4
5
person obtaining a copy of this software and associated
Original file line number Diff line number Diff line change @@ -13,9 +13,6 @@ This project is developed and maintained by the [Embedded Linux team][team].
13
13
14
14
## [ Documentation] ( https://docs.rs/linux-embedded-hal )
15
15
16
- Note that current ` v0.4.0-alpha.X ` releases track the unstable [ 'embedded-hal'] ` v1.0.0-alpha.Y ` .
17
- For bugfixes or backports please open PRs against the ` v0.3.x ` branch.
18
-
19
16
## GPIO character device
20
17
21
18
Since Linux kernel v4.4 the use of sysfs GPIO was deprecated and replaced by the character device GPIO.
@@ -25,7 +22,7 @@ This crate includes feature flag `gpio_cdev` that exposes `CdevPin` as wrapper a
25
22
To enable it update your Cargo.toml. Please note that in order to prevent ` LineHandle ` fd from closing you should
26
23
assign to a variable, see [ cdev issue] ( https://github.com/rust-embedded/gpio-cdev/issues/29 ) for more details.
27
24
```
28
- linux-embedded-hal = { version = "0.3 ", features = ["gpio_cdev"] }
25
+ linux-embedded-hal = { version = "0.4 ", features = ["gpio_cdev"] }
29
26
```
30
27
31
28
` SysfsPin ` can be still used with feature flag ` gpio_sysfs ` .
You can’t perform that action at this time.
0 commit comments