Skip to content

Commit f47b7fa

Browse files
committed
release 0.5.0
1 parent cef4b87 commit f47b7fa

File tree

2 files changed

+12
-9
lines changed

2 files changed

+12
-9
lines changed

CHANGELOG-rust.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ This changelog tracks the Rust `svdtools` project. See
55

66
## [Unreleased]
77

8+
## [v0.5.0] 2025-05-25
9+
10+
* Add `bin` feature (enabled by default), make some dependencies optional
811
* Skip adding `enumeratedValues` & `writeConstraint` to derived fields
912

1013
## [v0.4.6] 2025-04-03
@@ -227,7 +230,8 @@ Other changes:
227230

228231
* Initial release with feature-parity with the Python project.
229232

230-
[Unreleased]: https://github.com/rust-embedded/svdtools/compare/v0.4.6...HEAD
233+
[Unreleased]: https://github.com/rust-embedded/svdtools/compare/v0.5.0...HEAD
234+
[v0.5.0]: https://github.com/rust-embedded/svdtools/compare/v0.4.6...v0.5.0
231235
[v0.4.6]: https://github.com/rust-embedded/svdtools/compare/v0.4.5...v0.4.6
232236
[v0.4.5]: https://github.com/rust-embedded/svdtools/compare/v0.4.4...v0.4.5
233237
[v0.4.4]: https://github.com/rust-embedded/svdtools/compare/v0.4.3...v0.4.4

Cargo.toml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "svdtools"
3-
version = "0.4.6"
3+
version = "0.5.0"
44
repository = "https://github.com/rust-embedded/svdtools/"
55
description = "Tool for modifying bugs in CMSIS SVD"
66
authors = ["Andrey Zgarbul <[email protected]>", "MarcoIeni"]
@@ -26,7 +26,11 @@ edition = "2021"
2626
rust-version = "1.70"
2727

2828
[dependencies]
29-
clap = { version = "4.5", features = ["derive", "cargo", "color"], optional = true }
29+
clap = { version = "4.5", features = [
30+
"derive",
31+
"cargo",
32+
"color",
33+
], optional = true }
3034
serde = { version = "1.0", features = ["derive"] }
3135
quick-xml = { version = "0.37", features = ["serialize"] }
3236
svd-rs = { version = "0.14.12", features = ["serde", "derive-from"] }
@@ -67,12 +71,7 @@ required-features = ["bin"]
6771
[features]
6872
default = ["bin", "json", "yaml"]
6973

70-
bin = [
71-
"dep:liquid",
72-
"dep:rayon",
73-
"dep:clap",
74-
"dep:env_logger",
75-
]
74+
bin = ["dep:liquid", "dep:rayon", "dep:clap", "dep:env_logger"]
7675

7776
json = ["dep:serde_json"]
7877
yaml = ["dep:serde_yaml"]

0 commit comments

Comments
 (0)