Skip to content

Commit

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



Co-authored-by: Diego Barrios Romero <[email protected]>
  • Loading branch information
bors[bot] and eldruin authored Nov 22, 2021
2 parents 2e0b40b + f842db3 commit 0665e24
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@ Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

- Updated nix to allow both version `0.22` or `0.23`.

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

- Updated nix to version `0.23`.

## [v0.5.0] - 2021-09-21

Expand Down Expand Up @@ -53,6 +56,7 @@ Adds the ability to create a collection of lines from a single chip and read or
- Initial release of the library with basic operations centered around operating
on a single line at a time.

[Unreleased]: https://github.com/rust-embedded/gpio-cdev/compare/0.5.0...HEAD
[Unreleased]: https://github.com/rust-embedded/gpio-cdev/compare/0.5.1...HEAD
[v0.5.1]: https://github.com/rust-embedded/gpio-cdev/compare/0.5.0...0.5.1
[v0.5.0]: https://github.com/rust-embedded/gpio-cdev/compare/0.4.0...0.5.0
[v0.4.0]: https://github.com/rust-embedded/gpio-cdev/compare/0.3.0...0.4.0
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gpio-cdev"
version = "0.5.0" # remember to update html_root_url
version = "0.5.1"
authors = ["Paul Osborne <[email protected]>", "Frank Pagliughi <[email protected]>"]
description = "Linux GPIO Character Device Support (/dev/gpiochipN)"
homepage = "https://github.com/rust-embedded/gpio-cdev"
Expand All @@ -22,7 +22,7 @@ required-features = ["async-tokio"]
[dependencies]
bitflags = "1.3"
libc = "0.2"
nix = ">= 0.22, < 0.24"
nix = "0.23"
tokio = { version = "1", features = ["io-std", "net"], optional = true }
futures = { version = "0.3", optional = true }

Expand Down
1 change: 0 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@
//! [README on Github]: https://github.com/rust-embedded/rust-gpio-cdev

#![cfg_attr(docsrs, feature(doc_cfg))]
#![doc(html_root_url = "https://docs.rs/gpio-cdev/0.5.0")]

#[macro_use]
extern crate bitflags;
Expand Down

0 comments on commit 0665e24

Please sign in to comment.