Skip to content

Commit

Permalink
bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
warthog618 committed May 23, 2024
1 parent a122488 commit 35aca86
Show file tree
Hide file tree
Showing 10 changed files with 42 additions and 11 deletions.
15 changes: 13 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,25 @@ Each crate has its own detailed CHANGELOG:
- [lib](lib/CHANGELOG.md)
- [uapi](uapi/CHANGELOG.md)

## [Unreleased](https://github.com/warthog618/gpiocdev-rs/compare/lib-v0.7.0...HEAD)
## [Unreleased](https://github.com/warthog618/gpiocdev-rs/compare/lib-v0.7.1...HEAD)

## 2024-05-23

- remove dependencies on `nohash-hasher`.
- move some v2::LineConfig functions from lib to uapi.
- fix issue #17 - musl build errors.

### Crates

- [cli v0.5.4](cli/CHANGELOG.md)
- [embedded-hal v0.1.1](embedded-hal/CHANGELOG.md)
- [lib v0.7.1](lib/CHANGELOG.md)
- [uapi v0.6.2](uapi/CHANGELOG.md)

## 2024-02-20

- fix issue #14 - drop `Timestamp` class and `chrono` dependency from lib.
- impl `From` for async wrappers
- impl `From` for async wrappers.
- impl `AsRef` for `Request` and `Chip` to simplify usage of async wrappers.
- add embedded-hal crate.

Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,13 @@

## Unreleased

<a name="v0.5.4"></a>

## v0.5.4 - 2024-05-23

- remove dependency on nohash-hasher.
- use local var println formatting.
- replace now deprecateds chrono function calls.
- replace now deprecated chrono function calls.
- improve help for set --interactive get.

<a name="v0.5.3"></a>
Expand Down
2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ license = "Apache-2.0 OR MIT"
name = "gpiocdev-cli"
repository = "https://github.com/warthog618/gpiocdev-rs"
rust-version = "1.70"
version = "0.5.3"
version = "0.5.4"

[[bin]]
name = "gpiocdev"
Expand Down
8 changes: 8 additions & 0 deletions embedded-hal/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
<a name="unreleased"></a>

## Unreleased

<a name="v0.1.1"></a>

## v0.1.1 - 2024-05-23

- bump gpiosim dependency

<a name="v0.1.0"></a>

## v0.1.0 - 2024-02-20

- initial release
2 changes: 1 addition & 1 deletion embedded-hal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ license = "Apache-2.0 OR MIT"
name = "gpiocdev-embedded-hal"
repository = "https://github.com/warthog618/gpiocdev-rs"
rust-version = "1.63"
version = "0.1.0"
version = "0.1.1"

[dependencies]
embedded-hal = {version = "1.0"}
Expand Down
4 changes: 4 additions & 0 deletions lib/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

<a name="v0.7.1"></a>

## v0.7.1 - 2024-05-23

- remove dependency on `nohash-hasher`.
- move adding attributes to v2::LineConfig to uapi.
- use local var println formatting.
Expand Down
4 changes: 2 additions & 2 deletions lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ license = "Apache-2.0 OR MIT"
name = "gpiocdev"
repository = "https://github.com/warthog618/gpiocdev-rs"
rust-version = "1.63"
version = "0.7.0"
version = "0.7.1"

[dependencies]
async-io = {version = "2.2", optional = true}
futures = {version = "0.3", optional = true}
gpiocdev-uapi = {version = "0.6", path = "../uapi", default-features = false}
gpiocdev-uapi = {version = "0.6.2", path = "../uapi", default-features = false}
serde = {version = "1.0", optional = true}
serde_derive = {version = "1.0", optional = true}
thiserror = "1.0"
Expand Down
4 changes: 4 additions & 0 deletions uapi/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

<a name="v0.6.2"></a>

## v0.6.2 - 2024-05-23

- add methods to add attributes to v2::LineConfig.
- fix musl build errors and warnings

Expand Down
2 changes: 1 addition & 1 deletion uapi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ license = "Apache-2.0 OR MIT"
name = "gpiocdev-uapi"
repository = "https://github.com/warthog618/gpiocdev-rs"
rust-version = "1.62"
version = "0.6.1"
version = "0.6.2"

[dependencies]
bitflags = "2.2"
Expand Down

0 comments on commit 35aca86

Please sign in to comment.