Skip to content

Release 0.5.0 version #64

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 22, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 <[email protected]>", "Frank Pagliughi <[email protected]>"]
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