File tree Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Expand file tree Collapse file tree 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/).
77
88## [ Unreleased]
99
10+ ## [ v0.4.0] - 2024-01-10
11+
1012### Changed
1113- 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 ) )
1214- 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/).
150152
151153Initial release
152154
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
154157[ v0.4.0-alpha.4 ] : https://github.com/rust-embedded/linux-embedded-hal/compare/v0.4.0-alpha.3...v0.4.0-alpha.4
155158[ v0.4.0-alpha.3 ] : https://github.com/rust-embedded/linux-embedded-hal/compare/v0.4.0-alpha.2...v0.4.0-alpha.3
156159[ 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"]
99license = " MIT OR Apache-2.0"
1010name = " linux-embedded-hal"
1111repository = " https://github.com/rust-embedded/linux-embedded-hal"
12- version = " 0.4.0-alpha.4 "
12+ version = " 0.4.0"
1313edition = " 2018"
1414
1515[features ]
Original file line number Diff line number Diff line change 11Copyright (c) 2018 Jorge Aparicio
2+ Copyright (c) 2019-2024 The Rust embedded linux team and contributors.
23
34Permission is hereby granted, free of charge, to any
45person 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].
1313
1414## [ Documentation] ( https://docs.rs/linux-embedded-hal )
1515
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-
1916## GPIO character device
2017
2118Since 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
2522To enable it update your Cargo.toml. Please note that in order to prevent ` LineHandle ` fd from closing you should
2623assign to a variable, see [ cdev issue] ( https://github.com/rust-embedded/gpio-cdev/issues/29 ) for more details.
2724```
28- linux-embedded-hal = { version = "0.3 ", features = ["gpio_cdev"] }
25+ linux-embedded-hal = { version = "0.4 ", features = ["gpio_cdev"] }
2926```
3027
3128` SysfsPin ` can be still used with feature flag ` gpio_sysfs ` .
You can’t perform that action at this time.
0 commit comments