Skip to content

Commit d45af5f

Browse files
bors[bot]eldruin
andauthored
Merge #261
261: Embedded-hal 1.0.0-alpha.4 release r=ryankurte a=eldruin Once we have a new alpha release we can move forward with merging rust-embedded/linux-embedded-hal#44 I also added the `html_root_url`, which is annoying but necessary according to the Rust API guidelines. Co-authored-by: Diego Barrios Romero <[email protected]>
2 parents b0d99b5 + 060c757 commit d45af5f

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

+4-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
### Changed
1313

14+
## [v1.0.0-alpha.4] - 2020-11-11
15+
1416
### Fixed
1517
- Support for I2C addressing modes in `Transactional` I2C traits.
1618

@@ -148,7 +150,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
148150

149151
Initial release
150152

151-
[Unreleased]: https://github.com/rust-embedded/embedded-hal/compare/v1.0.0-alpha.3...HEAD
153+
[Unreleased]: https://github.com/rust-embedded/embedded-hal/compare/v1.0.0-alpha.4...HEAD
154+
[v1.0.0-alpha.4]: https://github.com/rust-embedded/embedded-hal/compare/v1.0.0-alpha.3...v1.0.0-alpha.4
152155
[v1.0.0-alpha.3]: https://github.com/rust-embedded/embedded-hal/compare/v1.0.0-alpha.2...v1.0.0-alpha.3
153156
[v1.0.0-alpha.2]: https://github.com/rust-embedded/embedded-hal/compare/v1.0.0-alpha.1...v1.0.0-alpha.2
154157
[v1.0.0-alpha.1]: https://github.com/rust-embedded/embedded-hal/compare/v0.2.3...v1.0.0-alpha.1

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ license = "MIT OR Apache-2.0"
1313
name = "embedded-hal"
1414
readme = "README.md"
1515
repository = "https://github.com/rust-embedded/embedded-hal"
16-
version = "1.0.0-alpha.3"
16+
version = "1.0.0-alpha.4" # remember to update html_root_url
1717

1818
[dependencies]
1919
nb = "1"

src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -404,6 +404,7 @@
404404
//! # fn main() {}
405405
//! ```
406406
407+
#![doc(html_root_url = "https://docs.rs/embedded-hal/1.0.0-alpha.4")]
407408
#![deny(missing_docs)]
408409
#![no_std]
409410

0 commit comments

Comments
 (0)