From 1d979ebe47d54708f84fb968435acb6e44bbcd82 Mon Sep 17 00:00:00 2001 From: Brandon Matthews Date: Thu, 25 Oct 2018 15:42:19 -0700 Subject: [PATCH 1/2] Update changelog for v0.2.2 release and tick version --- CHANGELOG.md | 14 ++++++++++++++ Cargo.toml | 4 ++-- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d7abb561..c8d2cc255 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.2.2] - 2018-10-25 + +### Added + +- Added the Rust Code of Conduct to this repository +- The first ADC-related trait. This is a simple trait for one-shot conversions. +- Iterator-based blocking write and write+read traits have been added to I2C and SPI. +- New helper constants for SPI modes. +- A new trait for a cancellable countdown. +- New traits for watchdog timer management, including startup, feeding, and stopping. + +### Changed +- Updated docs to clarify I2C address bit widths and expectations. + ## [v0.2.1] - 2018-05-14 ### Changed diff --git a/Cargo.toml b/Cargo.toml index d558c2574..d1f6fb673 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ license = "MIT OR Apache-2.0" name = "embedded-hal" readme = "README.md" repository = "https://github.com/japaric/embedded-hal" -version = "0.2.1" +version = "0.2.2" [dependencies.void] default-features = false @@ -28,4 +28,4 @@ futures = "0.1.17" unproven = ["nb/unstable"] [package.metadata.docs.rs] -features = ["unproven"] \ No newline at end of file +features = ["unproven"] From 6aeb03f9ec8bde2fb7b23c070fb3669947e45463 Mon Sep 17 00:00:00 2001 From: Ryan Date: Sun, 4 Nov 2018 00:26:46 +1300 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c8d2cc255..0863ecebb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] -## [v0.2.2] - 2018-10-25 +## [v0.2.2] - 2018-11-03 ### Added