From 3967564ca3229556894e8ebb048b270f1da8144d Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Mon, 17 Feb 2025 20:10:43 +0100 Subject: [PATCH] prep HAL v0.10.0 --- va108xx-hal/CHANGELOG.md | 4 ++-- va108xx-hal/Cargo.toml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/va108xx-hal/CHANGELOG.md b/va108xx-hal/CHANGELOG.md index fd7fb6f..3b2264b 100644 --- a/va108xx-hal/CHANGELOG.md +++ b/va108xx-hal/CHANGELOG.md @@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [unreleased] -## [v0.10.0] +## [v0.10.0] 2025-02-17 ## Added @@ -28,7 +28,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - Bug in async GPIO interrupt handler where all enabled interrupts, even the ones which might be unrelated to the pin, were disabled. -## [v0.9.0] +## [v0.9.0] 2025-02-13 ## Fixed diff --git a/va108xx-hal/Cargo.toml b/va108xx-hal/Cargo.toml index e74c8e0..b58b048 100644 --- a/va108xx-hal/Cargo.toml +++ b/va108xx-hal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "va108xx-hal" -version = "0.9.0" +version = "0.10.0" authors = ["Robin Mueller "] edition = "2021" description = "HAL for the Vorago VA108xx family of microcontrollers" @@ -28,8 +28,8 @@ heapless = "0.8" static_cell = "2" thiserror = { version = "2", default-features = false } void = { version = "1", default-features = false } -once_cell = {version = "1", default-features = false } -va108xx = { version = "0.5", path = "../va108xx", default-features = false, features = ["critical-section", "defmt"] } +once_cell = { version = "1", default-features = false } +va108xx = { version = "0.5", default-features = false, features = ["critical-section", "defmt"] } embassy-sync = "0.6" defmt = { version = "0.3", optional = true }