From 0e91021709893354deee5cc9f4d644a53d050b29 Mon Sep 17 00:00:00 2001 From: Kent Gibson Date: Thu, 3 Oct 2024 16:23:13 +0800 Subject: [PATCH] bump versions --- Cargo.lock | 4 ++-- lib/CHANGELOG.md | 5 +++++ lib/Cargo.toml | 4 ++-- uapi/CHANGELOG.md | 6 ++++++ uapi/Cargo.toml | 2 +- 5 files changed, 16 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ef91cdc..546bfe2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -792,7 +792,7 @@ dependencies = [ [[package]] name = "gpiocdev" -version = "0.7.1" +version = "0.7.2" dependencies = [ "anyhow", "async-io 2.3.3", @@ -844,7 +844,7 @@ dependencies = [ [[package]] name = "gpiocdev-uapi" -version = "0.6.2" +version = "0.6.3" dependencies = [ "bitflags 2.6.0", "criterion", diff --git a/lib/CHANGELOG.md b/lib/CHANGELOG.md index 637d64e..229230a 100644 --- a/lib/CHANGELOG.md +++ b/lib/CHANGELOG.md @@ -2,8 +2,13 @@ ## Unreleased + + +## v0.7.2 - 2024-10-03 + - add documentation to builder for complex configurations. - add Request.lone_value() and set_lone_value(). +- support android build diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 1d21482..3f68254 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -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.1" +version = "0.7.2" [dependencies] async-io = {version = "2.2", optional = true} futures = {version = "0.3", optional = true} -gpiocdev-uapi = {version = "0.6.2", path = "../uapi", default-features = false} +gpiocdev-uapi = {version = "0.6.3", path = "../uapi", default-features = false} serde = {version = "1.0", optional = true} serde_derive = {version = "1.0", optional = true} thiserror = "1.0" diff --git a/uapi/CHANGELOG.md b/uapi/CHANGELOG.md index 7a08bd1..b6cb2eb 100644 --- a/uapi/CHANGELOG.md +++ b/uapi/CHANGELOG.md @@ -2,6 +2,12 @@ ## Unreleased + + +## v0.6.3 - 2024-10-03 + +- support android build + ## v0.6.2 - 2024-05-23 diff --git a/uapi/Cargo.toml b/uapi/Cargo.toml index 928ec71..b1eeb3a 100644 --- a/uapi/Cargo.toml +++ b/uapi/Cargo.toml @@ -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.2" +version = "0.6.3" [dependencies] bitflags = "2.2"