Skip to content

Release 0.5.1 #69

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Nov 22, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 <[email protected]>"]
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