From 75e6d98e44d513798990f130446ee8b5206e4891 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Mon, 17 Feb 2025 20:34:53 +0100 Subject: [PATCH] prep BSP v0.8.0 --- examples/embassy/Cargo.toml | 2 +- examples/rtic/Cargo.toml | 4 ++-- examples/simple/Cargo.toml | 3 +-- vorago-reb1/CHANGELOG.md | 4 ++++ vorago-reb1/Cargo.toml | 7 ++----- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/examples/embassy/Cargo.toml b/examples/embassy/Cargo.toml index ebe4913..d4a2c30 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.10", path = "../../va108xx-hal" } +va108xx-hal = { version = "0.10" } va108xx-embassy = { version = "0.1", path = "../../va108xx-embassy" } [features] diff --git a/examples/rtic/Cargo.toml b/examples/rtic/Cargo.toml index 9aadd86..45871cd 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.10", path = "../../va108xx-hal" } -vorago-reb1 = { version = "0.7", path = "../../vorago-reb1" } +va108xx-hal = { version = "0.10" } +vorago-reb1 = { version = "0.8", path = "../../vorago-reb1" } diff --git a/examples/simple/Cargo.toml b/examples/simple/Cargo.toml index 5d1e20e..f1f41a6 100644 --- a/examples/simple/Cargo.toml +++ b/examples/simple/Cargo.toml @@ -16,10 +16,9 @@ embedded-io = "0.6" cortex-m-semihosting = "0.5.0" [dependencies.va108xx-hal] -path = "../../va108xx-hal" version = "0.10" features = ["rt", "defmt"] [dependencies.vorago-reb1] path = "../../vorago-reb1" -version = "0.7" +version = "0.8" diff --git a/vorago-reb1/CHANGELOG.md b/vorago-reb1/CHANGELOG.md index 418d3f8..03cb3fa 100644 --- a/vorago-reb1/CHANGELOG.md +++ b/vorago-reb1/CHANGELOG.md @@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [unreleased] +## [v0.8.0] 2025-02-17 + +- Bumped `va108xx-hal` dependency to 0.10 + ## [v0.7.0] 2025-02-13 - Bumped `va108xx-hal` dependency to 0.9 diff --git a/vorago-reb1/Cargo.toml b/vorago-reb1/Cargo.toml index 9b9766d..ad8325d 100644 --- a/vorago-reb1/Cargo.toml +++ b/vorago-reb1/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vorago-reb1" -version = "0.7.0" +version = "0.8.0" authors = ["Robin Mueller "] edition = "2021" description = "Board Support Crate for the Vorago REB1 development board" @@ -18,10 +18,7 @@ nb = "1" bitfield = ">=0.17, <=0.18" max116xx-10bit = "0.3" -[dependencies.va108xx-hal] -path = "../va108xx-hal" -version = "0.10" -features = ["rt"] +va108xx-hal = { version = "0.10", features = ["rt"] } [features] rt = ["va108xx-hal/rt"]