Skip to content

Commit

Permalink
Merge #64
Browse files Browse the repository at this point in the history
64: Release 0.5.0 version r=ryankurte a=eldruin

Fixes #52 

Co-authored-by: Diego Barrios Romero <eldruin@gmail.com>
  • Loading branch information
bors[bot] and eldruin authored Sep 21, 2021
2 parents e4f8364 + 8706b41 commit bd58cf1
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
12 changes: 7 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

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

- Update Tokio to 1.x. #[55]((https://github.com/rust-embedded/gpio-cdev/pull/55).
- Update Tokio to 1.x. [#55](https://github.com/rust-embedded/gpio-cdev/pull/55).
- Fix lsgpio example to output gpio line flags.
- Add `is_empty()` function for `Lines` struct.
- Add common trait implementations for public structures.
Expand All @@ -21,13 +21,13 @@ Versioning](https://semver.org/spec/v2.0.0.html).
- Updated `bitflags` to version `1.3`.


## v0.4.0 - 2020-08-01
## [v0.4.0] - 2020-08-01

- Removed pub "errors" module. Error now exposed at top level.
- MSRV is now 1.39.0
- Add support behind a feature flag for reading events from a line as a Stream via tokio. [#35](https://github.com/rust-embedded/gpio-cdev/pull/35).

## v0.3.0 - 2020-02-10
## [v0.3.0] - 2020-02-10

Refactored Errors:
- Removed the `error-chain` dependency.
Expand All @@ -51,4 +51,6 @@ 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.4.0...HEAD
[Unreleased]: https://github.com/rust-embedded/gpio-cdev/compare/0.5.0...HEAD
[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
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gpio-cdev"
version = "0.4.0"
version = "0.5.0" # remember to update html_root_url
authors = ["Paul Osborne <osbpau@gmail.com>", "Frank Pagliughi <fpagliughi@mindspring.com>"]
description = "Linux GPIO Character Device Support (/dev/gpiochipN)"
homepage = "https://github.com/rust-embedded/gpio-cdev"
Expand Down
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@
//! [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 bd58cf1

Please sign in to comment.