Skip to content

Commit 14cac99

Browse files
authored
Merge branch 'master' into add-fallible-digital-traits
2 parents 421d11b + 98a6fb8 commit 14cac99

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,22 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
2020
included in `digital::v2`.
2121
See [here](https://github.com/rust-embedded/embedded-hal/issues/95) for more info.
2222

23+
24+
## [v0.2.2] - 2018-11-03
25+
26+
### Added
27+
28+
- Added the Rust Code of Conduct to this repository
29+
- The first ADC-related trait. This is a simple trait for one-shot conversions.
30+
- Iterator-based blocking write and write+read traits have been added to I2C and SPI.
31+
- New helper constants for SPI modes.
32+
- A new trait for a cancellable countdown.
33+
- New traits for watchdog timer management, including startup, feeding, and stopping.
34+
35+
### Changed
36+
- Updated docs to clarify I2C address bit widths and expectations.
37+
38+
2339
## [v0.2.1] - 2018-05-14
2440

2541
### Changed

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ license = "MIT OR Apache-2.0"
1111
name = "embedded-hal"
1212
readme = "README.md"
1313
repository = "https://github.com/japaric/embedded-hal"
14-
version = "0.2.1"
14+
version = "0.2.2"
1515

1616
[dependencies.void]
1717
default-features = false
@@ -28,4 +28,4 @@ futures = "0.1.17"
2828
unproven = ["nb/unstable"]
2929

3030
[package.metadata.docs.rs]
31-
features = ["unproven"]
31+
features = ["unproven"]

0 commit comments

Comments
 (0)