Skip to content

Commit bd58cf1

Browse files
bors[bot]eldruin
andauthored
Merge #64
64: Release 0.5.0 version r=ryankurte a=eldruin Fixes #52 Co-authored-by: Diego Barrios Romero <[email protected]>
2 parents e4f8364 + 8706b41 commit bd58cf1

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

CHANGELOG.md

+7-5
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ Versioning](https://semver.org/spec/v2.0.0.html).
88

99
## [Unreleased]
1010

11-
## v0.5.0
11+
## [v0.5.0] - 2021-09-21
1212

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

2323

24-
## v0.4.0 - 2020-08-01
24+
## [v0.4.0] - 2020-08-01
2525

2626
- Removed pub "errors" module. Error now exposed at top level.
2727
- MSRV is now 1.39.0
2828
- 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).
2929

30-
## v0.3.0 - 2020-02-10
30+
## [v0.3.0] - 2020-02-10
3131

3232
Refactored Errors:
3333
- Removed the `error-chain` dependency.
@@ -51,4 +51,6 @@ Adds the ability to create a collection of lines from a single chip and read or
5151
- Initial release of the library with basic operations centered around operating
5252
on a single line at a time.
5353

54-
[Unreleased]: https://github.com/rust-embedded/gpio-cdev/compare/0.4.0...HEAD
54+
[Unreleased]: https://github.com/rust-embedded/gpio-cdev/compare/0.5.0...HEAD
55+
[v0.5.0]: https://github.com/rust-embedded/gpio-cdev/compare/0.4.0...0.5.0
56+
[v0.4.0]: https://github.com/rust-embedded/gpio-cdev/compare/0.3.0...0.4.0

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gpio-cdev"
3-
version = "0.4.0"
3+
version = "0.5.0" # remember to update html_root_url
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"

src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@
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")]
8687

8788
#[macro_use]
8889
extern crate bitflags;

0 commit comments

Comments
 (0)