Skip to content

Commit 2026a27

Browse files
authored
Merge pull request #250 from rust-embedded/r0319
release 0.3.19
2 parents d672f46 + cf170c8 commit 2026a27

File tree

2 files changed

+15
-11
lines changed

2 files changed

+15
-11
lines changed

CHANGELOG-rust.md

+5-1
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.3.19] 2024-10-18
9+
10+
* Fix deletion childrens on cluster modify
811
* Sugar for simple `_split` and `_merge`
912

1013
## [v0.3.18] 2024-08-10
@@ -183,7 +186,8 @@ Other changes:
183186

184187
* Initial release with feature-parity with the Python project.
185188

186-
[Unreleased]: https://github.com/rust-embedded/svdtools/compare/v0.3.18...HEAD
189+
[Unreleased]: https://github.com/rust-embedded/svdtools/compare/v0.3.19...HEAD
190+
[v0.3.19]: https://github.com/rust-embedded/svdtools/compare/v0.3.18...v0.3.19
187191
[v0.3.18]: https://github.com/rust-embedded/svdtools/compare/v0.3.17...v0.3.18
188192
[v0.3.17]: https://github.com/rust-embedded/svdtools/compare/v0.3.16...v0.3.17
189193
[v0.3.16]: https://github.com/rust-embedded/svdtools/compare/v0.3.15...v0.3.16

Cargo.toml

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "svdtools"
3-
version = "0.3.18"
3+
version = "0.3.19"
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,33 +26,33 @@ edition = "2021"
2626
rust-version = "1.70"
2727

2828
[dependencies]
29-
clap = { version = "4.4", features = ["derive", "cargo", "color"] }
29+
clap = { version = "4.5", features = ["derive", "cargo", "color"] }
3030
serde = { version = "1.0", features = ["derive"] }
31-
quick-xml = { version = "0.31", features = ["serialize"] }
32-
svd-rs = { version = "0.14.8", features = ["serde", "derive-from"] }
33-
svd-parser = { version = "0.14.5", features = ["expand"] }
34-
svd-encoder = "0.14.4"
31+
quick-xml = { version = "0.36", features = ["serialize"] }
32+
svd-rs = { version = "0.14.9", features = ["serde", "derive-from"] }
33+
svd-parser = { version = "0.14.7", features = ["expand"] }
34+
svd-encoder = "0.14.5"
3535
# serde_yaml 0.9.x looks broken
3636
serde_yaml = "0.8.26"
3737
serde_json = { version = "1.0", features = ["preserve_order"] }
3838
anyhow = "1.0.65"
3939
thiserror = "1.0.35"
40-
hashlink = "0.8.4"
40+
hashlink = "0.9.1"
4141
globset = "0.4.14"
4242
commands = "0.0.5"
4343
env_logger = "0.11"
4444
log = { version = "~0.4", features = ["std"] }
45-
normpath = "1.1.0"
45+
normpath = "1.3.0"
4646
liquid = "0.26.0"
47-
once_cell = "1.18.0"
47+
once_cell = "1.20.0"
4848
rayon = "1.7.0"
4949
regex = "1.10"
5050
itertools = "0.13.0"
5151
phf = { version = "0.11", features = ["macros"] }
5252

5353
[dependencies.yaml-rust]
5454
package = "yaml-rust2"
55-
version = "0.8"
55+
version = "0.9"
5656

5757
[dev-dependencies]
5858
similar = "2.5.0"

0 commit comments

Comments
 (0)