Skip to content

Commit 460faac

Browse files
authored
Merge pull request #283 from rust-embedded/r045
release 0.4.5
2 parents 858e5c7 + d6a3517 commit 460faac

File tree

2 files changed

+17
-14
lines changed

2 files changed

+17
-14
lines changed

CHANGELOG-rust.md

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

66
## [Unreleased]
77

8+
## [v0.4.5] 2025-03-11
9+
810
* Calculate `_add` position for peripherals and registers
911

1012
## [v0.4.4] 2025-02-08
@@ -219,7 +221,8 @@ Other changes:
219221

220222
* Initial release with feature-parity with the Python project.
221223

222-
[Unreleased]: https://github.com/rust-embedded/svdtools/compare/v0.4.4...HEAD
224+
[Unreleased]: https://github.com/rust-embedded/svdtools/compare/v0.4.5...HEAD
225+
[v0.4.5]: https://github.com/rust-embedded/svdtools/compare/v0.4.4...v0.4.5
223226
[v0.4.4]: https://github.com/rust-embedded/svdtools/compare/v0.4.3...v0.4.4
224227
[v0.4.3]: https://github.com/rust-embedded/svdtools/compare/v0.4.2...v0.4.3
225228
[v0.4.2]: https://github.com/rust-embedded/svdtools/compare/v0.4.1...v0.4.2

Cargo.toml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "svdtools"
3-
version = "0.4.4"
3+
version = "0.4.5"
44
repository = "https://github.com/rust-embedded/svdtools/"
55
description = "Tool for modifying bugs in CMSIS SVD"
66
authors = ["Andrey Zgarbul <[email protected]>", "MarcoIeni"]
@@ -28,32 +28,32 @@ rust-version = "1.70"
2828
[dependencies]
2929
clap = { version = "4.5", features = ["derive", "cargo", "color"] }
3030
serde = { version = "1.0", features = ["derive"] }
31-
quick-xml = { version = "0.36", features = ["serialize"] }
32-
svd-rs = { version = "0.14.11", features = ["serde", "derive-from"] }
33-
svd-parser = { version = "0.14.8", features = ["expand"] }
34-
svd-encoder = "0.14.6"
31+
quick-xml = { version = "0.37", features = ["serialize"] }
32+
svd-rs = { version = "0.14.12", features = ["serde", "derive-from"] }
33+
svd-parser = { version = "0.14.9", features = ["expand"] }
34+
svd-encoder = "0.14.7"
3535
# serde_yaml 0.9.x looks broken
3636
serde_yaml = "0.8.26"
3737
serde_json = { version = "1.0", features = ["preserve_order"] }
38-
anyhow = "1.0.65"
38+
anyhow = "1.0.97"
3939
thiserror = "1.0.35"
40-
hashlink = "0.9.1"
41-
globset = "0.4.14"
40+
hashlink = "0.10.0"
41+
globset = "0.4.16"
4242
commands = "0.0.5"
4343
env_logger = "0.11"
4444
log = { version = "~0.4", features = ["std"] }
4545
normpath = "1.3.0"
46-
liquid = "0.26.0"
47-
once_cell = "1.20.0"
46+
liquid = "0.26.11"
47+
once_cell = "1.21.0"
4848
rayon = "1.7.0"
4949
regex = "1.10"
50-
itertools = "0.13.0"
50+
itertools = "0.14.0"
5151
phf = { version = "0.11", features = ["macros"] }
5252

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

5757
[dev-dependencies]
5858
similar = "2.5.0"
59-
tempfile = "3.3"
59+
tempfile = "3.18"

0 commit comments

Comments
 (0)