From f9d1233d3f26285594b02b684f171d249cf91de0 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 --- examples/embassy/Cargo.toml | 2 +- examples/rtic/Cargo.toml | 2 +- examples/simple/Cargo.toml | 2 +- va108xx-embassy/Cargo.toml | 2 +- va108xx-hal/CHANGELOG.md | 4 ++-- va108xx-hal/Cargo.toml | 6 +++--- vorago-reb1/Cargo.toml | 2 +- 7 files changed, 10 insertions(+), 10 deletions(-) diff --git a/examples/embassy/Cargo.toml b/examples/embassy/Cargo.toml index 405132e..ebe4913 100644 --- a/examples/embassy/Cargo.toml +++ b/examples/embassy/Cargo.toml @@ -27,7 +27,7 @@ embassy-executor = { version = "0.7", features = [ "executor-interrupt" ]} -va108xx-hal = { version = "0.9", path = "../../va108xx-hal" } +va108xx-hal = { version = "0.10", path = "../../va108xx-hal" } va108xx-embassy = { version = "0.1", path = "../../va108xx-embassy" } [features] diff --git a/examples/rtic/Cargo.toml b/examples/rtic/Cargo.toml index f56f9ed..9aadd86 100644 --- a/examples/rtic/Cargo.toml +++ b/examples/rtic/Cargo.toml @@ -22,5 +22,5 @@ rtic-sync = { version = "1.3", features = ["defmt-03"] } once_cell = {version = "1", default-features = false, features = ["critical-section"]} ringbuf = { version = "0.4.7", default-features = false, features = ["portable-atomic"] } -va108xx-hal = { version = "0.9", path = "../../va108xx-hal" } +va108xx-hal = { version = "0.10", path = "../../va108xx-hal" } vorago-reb1 = { version = "0.7", path = "../../vorago-reb1" } diff --git a/examples/simple/Cargo.toml b/examples/simple/Cargo.toml index 158dd37..5d1e20e 100644 --- a/examples/simple/Cargo.toml +++ b/examples/simple/Cargo.toml @@ -17,7 +17,7 @@ cortex-m-semihosting = "0.5.0" [dependencies.va108xx-hal] path = "../../va108xx-hal" -version = "0.9" +version = "0.10" features = ["rt", "defmt"] [dependencies.vorago-reb1] diff --git a/va108xx-embassy/Cargo.toml b/va108xx-embassy/Cargo.toml index a2b01f6..7f35f04 100644 --- a/va108xx-embassy/Cargo.toml +++ b/va108xx-embassy/Cargo.toml @@ -20,7 +20,7 @@ embassy-time-queue-utils = "0.1" once_cell = { version = "1", default-features = false, features = ["critical-section"] } -va108xx-hal = { version = "0.9", path = "../va108xx-hal" } +va108xx-hal = { version = "0.10", path = "../va108xx-hal" } [target.'cfg(all(target_arch = "arm", target_os = "none"))'.dependencies] portable-atomic = { version = "1", features = ["unsafe-assume-single-core"] } 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 } diff --git a/vorago-reb1/Cargo.toml b/vorago-reb1/Cargo.toml index c705c46..9b9766d 100644 --- a/vorago-reb1/Cargo.toml +++ b/vorago-reb1/Cargo.toml @@ -20,7 +20,7 @@ max116xx-10bit = "0.3" [dependencies.va108xx-hal] path = "../va108xx-hal" -version = "0.9" +version = "0.10" features = ["rt"] [features]