Skip to content

Commit 9f69447

Browse files
committed
release-0.3.5
1 parent 7010c72 commit 9f69447

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
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.3.5] 2023-11-30
9+
810
* Move field with derived enums before other
911
* `-1` for default enum value
1012
* Update `displayName` during collect, improve searching common `description`
@@ -104,7 +106,8 @@ Other changes:
104106

105107
* Initial release with feature-parity with the Python project.
106108

107-
[Unreleased]: https://github.com/rust-embedded/svdtools/compare/v0.3.4...HEAD
109+
[Unreleased]: https://github.com/rust-embedded/svdtools/compare/v0.3.5...HEAD
110+
[v0.3.5]: https://github.com/rust-embedded/svdtools/compare/v0.3.4...v0.3.5
108111
[v0.3.4]: https://github.com/rust-embedded/svdtools/compare/v0.3.3...v0.3.4
109112
[v0.3.3]: https://github.com/rust-embedded/svdtools/compare/v0.3.2...v0.3.3
110113
[v0.3.2]: https://github.com/rust-embedded/svdtools/compare/v0.3.1...v0.3.2

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "svdtools"
3-
version = "0.3.4"
3+
version = "0.3.5"
44
repository = "https://github.com/rust-embedded/svdtools/"
55
description = "Tool for modifying bugs in CMSIS SVD"
66
authors = [
@@ -25,11 +25,11 @@ edition = "2021"
2525
rust-version = "1.70"
2626

2727
[dependencies]
28-
clap = { version = "4.1", features = ["derive", "cargo", "color"] }
28+
clap = { version = "4.4", features = ["derive", "cargo", "color"] }
2929
serde = { version = "1.0", features = ["derive"] }
30-
quick-xml = { version = "0.30", features = ["serialize"] }
31-
svd-rs = { version = "0.14.4", features = ["serde", "derive-from"] }
32-
svd-parser = { version = "0.14.3", features = ["expand"] }
30+
quick-xml = { version = "0.31", features = ["serialize"] }
31+
svd-rs = { version = "0.14.6", features = ["serde", "derive-from"] }
32+
svd-parser = { version = "0.14.4", features = ["expand"] }
3333
svd-encoder = "0.14.4"
3434
yaml-rust = "0.4"
3535
# serde_yaml 0.9.x looks broken
@@ -47,7 +47,7 @@ liquid = "0.26.0"
4747
once_cell = "1.18.0"
4848
rayon = "1.7.0"
4949
regex = "1.9.1"
50-
itertools = "0.11.0"
50+
itertools = "0.12.0"
5151

5252
[dev-dependencies]
5353
tempfile = "3.3"

0 commit comments

Comments
 (0)