Skip to content

Commit 4d879dd

Browse files
bors[bot]eldruin
andauthored
Merge #69
69: Release 0.5.1 r=ryankurte a=eldruin Co-authored-by: Diego Barrios Romero <[email protected]>
2 parents 1c2c672 + c7efe8e commit 4d879dd

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

CHANGELOG.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,11 @@ Versioning](https://semver.org/spec/v2.0.0.html).
88

99
## [Unreleased]
1010

11-
- Updated nix to allow both version `0.22` or `0.23`.
12-
- Add PEC support for SMBus compatible adapters
11+
12+
## [v0.5.1] - 2021-11-22
13+
14+
- Updated nix to version `0.23`.
15+
- Add PEC support for SMBus compatible adapters.
1316
- Add `LinuxI2CDevice::force_new()` to open the device without checking if the address is bound to a driver.
1417

1518
## [v0.5.0] - 2021-09-21
@@ -22,6 +25,6 @@ Versioning](https://semver.org/spec/v2.0.0.html).
2225

2326
The changelog for previous versions was not recorded.
2427

25-
[Unreleased]: https://github.com/rust-embedded/rust-i2cdev/compare/0.5.0...HEAD
28+
[Unreleased]: https://github.com/rust-embedded/rust-i2cdev/compare/0.5.1...HEAD
29+
[v0.5.1]: https://github.com/rust-embedded/rust-i2cdev/compare/0.5.0...0.5.1
2630
[v0.5.0]: https://github.com/rust-embedded/rust-i2cdev/compare/0.4.0...0.5.0
27-

Cargo.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "i2cdev"
4-
version = "0.5.0" # remember to update html_root_url
4+
version = "0.5.1"
55
authors = ["Paul Osborne <[email protected]>"]
66
license = "MIT/Apache-2.0"
77
repository = "https://github.com/rust-embedded/rust-i2cdev"
@@ -18,8 +18,7 @@ Provides API for safe access to Linux i2c device interface.
1818
libc = "0.2"
1919
bitflags = "1.3"
2020
byteorder = "1"
21-
nix = ">= 0.22, < 0.24"
21+
nix = "0.23"
2222

2323
[dev-dependencies]
2424
docopt = "1"
25-

src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,6 @@
9797
#![crate_name = "i2cdev"]
9898
#![crate_type = "lib"]
9999
#![deny(missing_docs)]
100-
#![doc(html_root_url = "https://docs.rs/i2cdev/0.5.0")]
101100

102101
#[macro_use]
103102
extern crate bitflags;

0 commit comments

Comments
 (0)