prep HAL v0.10.0

This commit is contained in:
Robin Müller 2025-02-17 20:10:43 +01:00
parent 41f7f9d25b
commit 3967564ca3
2 changed files with 5 additions and 5 deletions

View File

@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
## [unreleased] ## [unreleased]
## [v0.10.0] ## [v0.10.0] 2025-02-17
## Added ## 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 - Bug in async GPIO interrupt handler where all enabled interrupts, even the ones which might
be unrelated to the pin, were disabled. be unrelated to the pin, were disabled.
## [v0.9.0] ## [v0.9.0] 2025-02-13
## Fixed ## Fixed

View File

@ -1,6 +1,6 @@
[package] [package]
name = "va108xx-hal" name = "va108xx-hal"
version = "0.9.0" version = "0.10.0"
authors = ["Robin Mueller <muellerr@irs.uni-stuttgart.de>"] authors = ["Robin Mueller <muellerr@irs.uni-stuttgart.de>"]
edition = "2021" edition = "2021"
description = "HAL for the Vorago VA108xx family of microcontrollers" description = "HAL for the Vorago VA108xx family of microcontrollers"
@ -29,7 +29,7 @@ static_cell = "2"
thiserror = { version = "2", default-features = false } thiserror = { version = "2", default-features = false }
void = { version = "1", default-features = false } void = { version = "1", default-features = false }
once_cell = { 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"] } va108xx = { version = "0.5", default-features = false, features = ["critical-section", "defmt"] }
embassy-sync = "0.6" embassy-sync = "0.6"
defmt = { version = "0.3", optional = true } defmt = { version = "0.3", optional = true }