Skip to content

Commit 709bd24

Browse files
bors[bot]eldruin
andauthored
Merge #72
72: Release 0.6.1 r=ryankurte a=eldruin Co-authored-by: Diego Barrios Romero <[email protected]>
2 parents 0725292 + 088a09f commit 709bd24

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

CHANGELOG.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,12 @@
22

33
## [master] - Unreleased
44

5+
## [0.6.1] - 2021-11-22
6+
57
### Changed
68

7-
- Updated nix to allow both version `0.22` or `0.23`.
9+
- Updated `nix` to version `0.23`.
10+
- Updated `mio` to version `0.8`.
811

912
## [0.6.0] - 2021-09-24
1013

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

184-
[master]: https://github.com/rust-embedded/rust-sysfs-gpio/compare/0.6.0...master
187+
[master]: https://github.com/rust-embedded/rust-sysfs-gpio/compare/0.6.1...master
188+
[0.6.1]: https://github.com/rust-embedded/rust-sysfs-gpio/compare/0.6.0...0.6.1
185189
[0.6.0]: https://github.com/rust-embedded/rust-sysfs-gpio/compare/0.5.3...0.6.0
186190
[0.5.3]: https://github.com/rust-embedded/rust-sysfs-gpio/compare/0.5.2...0.5.3
187191
[0.5.2]: https://github.com/rust-embedded/rust-sysfs-gpio/compare/0.5.1...0.5.2

Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sysfs_gpio"
3-
version = "0.6.0" # remember to update html_root_url
3+
version = "0.6.1"
44
authors = [
55
"Paul Osborne <[email protected]>",
66
"The Embedded Linux Team <[email protected]>",
@@ -19,8 +19,8 @@ async-tokio = ["futures", "tokio", "mio-evented"]
1919

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

2626
[dev-dependencies]

src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@
4141
//! ```
4242
4343
#![cfg_attr(feature = "async-tokio", allow(deprecated))]
44-
#![doc(html_root_url = "https://docs.rs/sysfs-gpio/0.6.0")]
4544

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

0 commit comments

Comments
 (0)