Skip to content

Commit 4e55504

Browse files
committed
Update to embedded-hal alpha.3
1 parent 0df951c commit 4e55504

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1111

1212
- Set default features to build both sysfs and cdev pin types
1313
- Removed `Pin` export, use `CdevPin` or `SysfsPin`
14+
- Adapted to `embedded-hal` `1.0.0-alpha.3` release.
15+
- Updated `nb` to version `1`.
1416

1517
## [v0.3.0] - 2019-11-25
1618

@@ -41,7 +43,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
4143

4244
### Added
4345

44-
- implementation of the unproven `embedded_hal::::digital::InputPin` trait.
46+
- implementation of the unproven `embedded_hal::::digital::InputPin` trait.
4547

4648
## [v0.2.0] - 2018-05-14
4749

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ gpio_cdev = ["gpio-cdev"]
1515
default = [ "gpio_cdev", "gpio_sysfs" ]
1616

1717
[dependencies]
18-
embedded-hal = "=1.0.0-alpha.1"
18+
embedded-hal = "=1.0.0-alpha.3"
1919
gpio-cdev = { version = "0.3", optional = true }
2020
sysfs_gpio = { version = "0.5", optional = true }
2121

2222
i2cdev = "0.4.3"
23-
nb = "0.1.1"
23+
nb = "1"
2424
serial-core = "0.4.0"
2525
serial-unix = "0.4.0"
2626
spidev = "0.4"

0 commit comments

Comments
 (0)