Skip to content

Commit

Permalink
Merge #72
Browse files Browse the repository at this point in the history
72: Release 0.6.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 0725292 + 088a09f commit 709bd24
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,12 @@

## [master] - Unreleased

## [0.6.1] - 2021-11-22

### Changed

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

## [0.6.0] - 2021-09-24

Expand Down Expand Up @@ -181,7 +184,8 @@
- Initial version of the library with basic functionality
- Support for `export`/`unexport`/`get_value`/`set_value`/`set_direction`

[master]: https://github.com/rust-embedded/rust-sysfs-gpio/compare/0.6.0...master
[master]: https://github.com/rust-embedded/rust-sysfs-gpio/compare/0.6.1...master
[0.6.1]: https://github.com/rust-embedded/rust-sysfs-gpio/compare/0.6.0...0.6.1
[0.6.0]: https://github.com/rust-embedded/rust-sysfs-gpio/compare/0.5.3...0.6.0
[0.5.3]: https://github.com/rust-embedded/rust-sysfs-gpio/compare/0.5.2...0.5.3
[0.5.2]: https://github.com/rust-embedded/rust-sysfs-gpio/compare/0.5.1...0.5.2
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sysfs_gpio"
version = "0.6.0" # remember to update html_root_url
version = "0.6.1"
authors = [
"Paul Osborne <osbpau@gmail.com>",
"The Embedded Linux Team <embedded-linux@teams.rust-embedded.org>",
Expand All @@ -19,8 +19,8 @@ async-tokio = ["futures", "tokio", "mio-evented"]

[dependencies]
futures = { version = "0.3", optional = true }
nix = ">= 0.22, < 0.24"
mio = { version = "0.7", optional = true, features = ["os-ext"]}
nix = "0.23"
mio = { version = "0.8", optional = true, features = ["os-ext"]}
tokio = { version = "1", optional = true, features = ["net"] }

[dev-dependencies]
Expand Down
1 change: 0 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@
//! ```

#![cfg_attr(feature = "async-tokio", allow(deprecated))]
#![doc(html_root_url = "https://docs.rs/sysfs-gpio/0.6.0")]

#[cfg(feature = "async-tokio")]
extern crate futures;
Expand Down

0 comments on commit 709bd24

Please sign in to comment.