Skip to content

Commit 0665e24

Browse files
bors[bot]eldruin
andauthored
Merge #67
67: Release 0.5.1 r=ryankurte a=eldruin Co-authored-by: Diego Barrios Romero <[email protected]>
2 parents 2e0b40b + f842db3 commit 0665e24

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

CHANGELOG.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@ 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`.
11+
12+
## [v0.5.1] - 2021-11-22
13+
14+
- Updated nix to version `0.23`.
1215

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

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

56-
[Unreleased]: https://github.com/rust-embedded/gpio-cdev/compare/0.5.0...HEAD
59+
[Unreleased]: https://github.com/rust-embedded/gpio-cdev/compare/0.5.1...HEAD
60+
[v0.5.1]: https://github.com/rust-embedded/gpio-cdev/compare/0.5.0...0.5.1
5761
[v0.5.0]: https://github.com/rust-embedded/gpio-cdev/compare/0.4.0...0.5.0
5862
[v0.4.0]: https://github.com/rust-embedded/gpio-cdev/compare/0.3.0...0.4.0

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gpio-cdev"
3-
version = "0.5.0" # remember to update html_root_url
3+
version = "0.5.1"
44
authors = ["Paul Osborne <[email protected]>", "Frank Pagliughi <[email protected]>"]
55
description = "Linux GPIO Character Device Support (/dev/gpiochipN)"
66
homepage = "https://github.com/rust-embedded/gpio-cdev"
@@ -22,7 +22,7 @@ required-features = ["async-tokio"]
2222
[dependencies]
2323
bitflags = "1.3"
2424
libc = "0.2"
25-
nix = ">= 0.22, < 0.24"
25+
nix = "0.23"
2626
tokio = { version = "1", features = ["io-std", "net"], optional = true }
2727
futures = { version = "0.3", optional = true }
2828

src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@
8383
//! [README on Github]: https://github.com/rust-embedded/rust-gpio-cdev
8484
8585
#![cfg_attr(docsrs, feature(doc_cfg))]
86-
#![doc(html_root_url = "https://docs.rs/gpio-cdev/0.5.0")]
8786

8887
#[macro_use]
8988
extern crate bitflags;

0 commit comments

Comments
 (0)