Skip to content

Commit

Permalink
Merge #69
Browse files Browse the repository at this point in the history
69: Release 0.5.1 r=ryankurte a=eldruin



Co-authored-by: Diego Barrios Romero <eldruin@gmail.com>
  • Loading branch information
bors[bot] and eldruin authored Nov 22, 2021
2 parents 1c2c672 + c7efe8e commit 4d879dd
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
11 changes: 7 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,11 @@ Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

- Updated nix to allow both version `0.22` or `0.23`.
- Add PEC support for SMBus compatible adapters

## [v0.5.1] - 2021-11-22

- Updated nix to version `0.23`.
- Add PEC support for SMBus compatible adapters.
- Add `LinuxI2CDevice::force_new()` to open the device without checking if the address is bound to a driver.

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

The changelog for previous versions was not recorded.

[Unreleased]: https://github.com/rust-embedded/rust-i2cdev/compare/0.5.0...HEAD
[Unreleased]: https://github.com/rust-embedded/rust-i2cdev/compare/0.5.1...HEAD
[v0.5.1]: https://github.com/rust-embedded/rust-i2cdev/compare/0.5.0...0.5.1
[v0.5.0]: https://github.com/rust-embedded/rust-i2cdev/compare/0.4.0...0.5.0

5 changes: 2 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "i2cdev"
version = "0.5.0" # remember to update html_root_url
version = "0.5.1"
authors = ["Paul Osborne <osbpau@gmail.com>"]
license = "MIT/Apache-2.0"
repository = "https://github.com/rust-embedded/rust-i2cdev"
Expand All @@ -18,8 +18,7 @@ Provides API for safe access to Linux i2c device interface.
libc = "0.2"
bitflags = "1.3"
byteorder = "1"
nix = ">= 0.22, < 0.24"
nix = "0.23"

[dev-dependencies]
docopt = "1"

1 change: 0 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@
#![crate_name = "i2cdev"]
#![crate_type = "lib"]
#![deny(missing_docs)]
#![doc(html_root_url = "https://docs.rs/i2cdev/0.5.0")]

#[macro_use]
extern crate bitflags;
Expand Down

0 comments on commit 4d879dd

Please sign in to comment.