Skip to content

Commit 42e98dc

Browse files
committed
Update cargo.toml, changelog for v1.0.0 release
1 parent e626c84 commit 42e98dc

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,18 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

8+
89
## [Unreleased]
910

11+
### Added
12+
13+
### Changed
14+
15+
16+
## [v1.0.0] - 2020-06-10
17+
18+
*** This is a breaking change (sorry) ***
19+
1020
### Added
1121
- A nonblocking trait for interfacing with random number generation hardware.
1222

@@ -16,6 +26,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1626
- All trait methods have been renamed `try_*` (i.e. `try_send`) for consistency.
1727
- The `Capture`, `Pwm`, `PwmPin` and `Qei` traits have been moved into their own
1828
`capture`, `pwm` and `qei` modules for consistency.
29+
- Void has been replaced with `core::convert::Infallible` which should be used
30+
in trait implementations where methods cannot fail.
31+
- A new [process](https://github.com/rust-embedded/embedded-hal#how-to-add-a-new-trait)
32+
has been adopted for the addition of traits to the embedded-hal.
1933
- The minimum supported Rust version is 1.35 due to [this issue](https://github.com/rust-lang/rust/issues/54973).
2034

2135
## [v0.2.3] - 2019-05-09

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ license = "MIT OR Apache-2.0"
1212
name = "embedded-hal"
1313
readme = "README.md"
1414
repository = "https://github.com/rust-embedded/embedded-hal"
15-
version = "0.2.3"
15+
version = "1.0.0-alpha.1"
1616

1717
[dependencies]
1818
nb = { version = "0.1.1", features = ["unstable"] }

0 commit comments

Comments
 (0)