Skip to content

Commit 8afc0a0

Browse files
committed
release rust svdtools-0.2.5
1 parent b14cf64 commit 8afc0a0

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
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.2.5] 2022-07-23
9+
10+
* update `svd-rs` crates to 0.14
811
* `convert`: Add `format_config` option
912

1013
## [v0.2.4] 2022-05-15
@@ -40,7 +43,8 @@ This changelog tracks the Rust `svdtools` project. See
4043

4144
* Initial release with feature-parity with the Python project.
4245

43-
[Unreleased]: https://github.com/stm32-rs/svdtools/compare/v0.2.4...HEAD
46+
[Unreleased]: https://github.com/stm32-rs/svdtools/compare/v0.2.5...HEAD
47+
[v0.2.5]: https://github.com/stm32-rs/svdtools/compare/v0.2.4...v0.2.5
4448
[v0.2.4]: https://github.com/stm32-rs/svdtools/compare/v0.2.3...v0.2.4
4549
[v0.2.3]: https://github.com/stm32-rs/svdtools/compare/v0.2.2...v0.2.3
4650
[v0.2.2]: https://github.com/stm32-rs/svdtools/compare/v0.2.1...v0.2.2

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "svdtools"
3-
version = "0.2.4"
3+
version = "0.2.5"
44
repository = "https://github.com/stm32-rs/svdtools"
55
description = "Tool for modifying bugs in CMSIS SVD"
66
authors = [
@@ -24,12 +24,12 @@ include = ["/res", "/src", "/tests", "CHANGELOG-rust.md", "README.md", "LICENSE-
2424
edition = "2021"
2525

2626
[dependencies]
27-
clap = { version = "3.0", features = ["derive"] }
27+
clap = { version = "3.2", features = ["derive"] }
2828
serde = { version = "1.0", features = ["derive"] }
2929
quick-xml = { version = "0.18", features = ["serialize"] }
3030
svd-rs = { version = "0.14.0", features = ["serde", "derive-from"] }
3131
svd-parser = { version = "0.14.0", features = ["expand"] }
32-
svd-encoder = "0.14.0"
32+
svd-encoder = "0.14.1"
3333
yaml-rust = "0.4"
3434
serde_yaml = "0.8.23"
3535
serde_json = { version = "1.0", features = ["preserve_order"] }

0 commit comments

Comments
 (0)