Skip to content

Commit

Permalink
Release 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
diondokter committed Jan 2, 2025
1 parent e1b3773 commit 353824b
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 8 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "device-driver-cli"
version = "1.0.0"
version = "1.0.1"
authors = ["Dion Dokter <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand All @@ -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" }
4 changes: 2 additions & 2 deletions device-driver/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "device-driver"
version = "1.0.0"
version = "1.0.1"
authors = ["Dion Dokter <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand All @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions generation/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "device-driver-generation"
version = "1.0.0"
version = "1.0.1"
authors = ["Dion Dokter <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand All @@ -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"] }
Expand Down
4 changes: 2 additions & 2 deletions macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "device-driver-macros"
version = "1.0.0"
version = "1.0.1"
authors = ["Dion Dokter <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand All @@ -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"

Expand Down

0 comments on commit 353824b

Please sign in to comment.