From 353824b1275264a5efeeb0afd80a44fefe64aa66 Mon Sep 17 00:00:00 2001 From: Dion Dokter Date: Thu, 2 Jan 2025 21:41:48 +0100 Subject: [PATCH] Release 1.0.1 --- CHANGELOG.md | 2 ++ cli/Cargo.toml | 4 ++-- device-driver/Cargo.toml | 4 ++-- generation/Cargo.toml | 4 ++-- macros/Cargo.toml | 4 ++-- 5 files changed, 10 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e2ddc7a..da4a97d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ### Unreleased +### 1.0.1 (02-01-25) + - Make defmt impls for fieldsets a bit more efficient by using type hints - Fixed cfg problem in the `read_all_registers` function diff --git a/cli/Cargo.toml b/cli/Cargo.toml index b3713d9..617a612 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "device-driver-cli" -version = "1.0.0" +version = "1.0.1" authors = ["Dion Dokter "] edition = "2021" license = "MIT OR Apache-2.0" @@ -13,6 +13,6 @@ readme = "README.md" [dependencies] clap = { version = "4.5.20", features = ["derive"] } -device-driver-generation = { version = "1.0.0", path = "../generation" } +device-driver-generation = { version = "=1.0.1", path = "../generation" } prettyplease = { version = "0.2.22", features = ["verbatim"] } syn = { version = "2.0" } diff --git a/device-driver/Cargo.toml b/device-driver/Cargo.toml index 372e0c7..104b40e 100644 --- a/device-driver/Cargo.toml +++ b/device-driver/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "device-driver" -version = "1.0.0" +version = "1.0.1" authors = ["Dion Dokter "] edition = "2021" license = "MIT OR Apache-2.0" @@ -12,7 +12,7 @@ description = "A toolkit to write better device drivers, faster" readme = "README.md" [dependencies] -device-driver-macros = { version = "=1.0.0", path = "../macros", default-features = false, optional = true } +device-driver-macros = { version = "=1.0.1", path = "../macros", default-features = false, optional = true } bitvec = { version = "1.0.1", default-features = false } embedded-io = "0.6.1" diff --git a/generation/Cargo.toml b/generation/Cargo.toml index 2770de8..fcbc4aa 100644 --- a/generation/Cargo.toml +++ b/generation/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "device-driver-generation" -version = "1.0.0" +version = "1.0.1" authors = ["Dion Dokter "] edition = "2021" license = "MIT OR Apache-2.0" @@ -14,7 +14,7 @@ readme = "README.md" [dependencies] anyhow = "1.0.86" convert_case = "0.6.0" -itertools = "0.13.0" +itertools = "0.14.0" proc-macro2 = "1.0.70" quote = "1.0.33" syn = { version = "2.0", features = ["extra-traits"] } diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 24bd93f..5315f14 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "device-driver-macros" -version = "1.0.0" +version = "1.0.1" authors = ["Dion Dokter "] edition = "2021" license = "MIT OR Apache-2.0" @@ -16,7 +16,7 @@ readme = "README.md" proc-macro = true [dependencies] -device-driver-generation = { version = "1.0.0", path = "../generation", default-features = false } +device-driver-generation = { version = "=1.0.1", path = "../generation", default-features = false } syn = { version = "2.0" } proc-macro2 = "1.0"