Skip to content

Commit dae92c6

Browse files
authored
Merge pull request #232 from rust-embedded/r0315
release 0.3.15
2 parents df11336 + 2312f7f commit dae92c6

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
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.3.15] 2024-07-02
9+
10+
* Add `info` tool, only with `device-name` for now
811
* Add `expand-patch` tool to show full patch rule with all includes
912

1013
## [v0.3.14] 2024-04-04
@@ -164,7 +167,8 @@ Other changes:
164167

165168
* Initial release with feature-parity with the Python project.
166169

167-
[Unreleased]: https://github.com/rust-embedded/svdtools/compare/v0.3.14...HEAD
170+
[Unreleased]: https://github.com/rust-embedded/svdtools/compare/v0.3.15...HEAD
171+
[v0.3.15]: https://github.com/rust-embedded/svdtools/compare/v0.3.14...v0.3.15
168172
[v0.3.14]: https://github.com/rust-embedded/svdtools/compare/v0.3.13...v0.3.14
169173
[v0.3.13]: https://github.com/rust-embedded/svdtools/compare/v0.3.12...v0.3.13
170174
[v0.3.12]: https://github.com/rust-embedded/svdtools/compare/v0.3.11...v0.3.12

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "svdtools"
3-
version = "0.3.14"
3+
version = "0.3.15"
44
repository = "https://github.com/rust-embedded/svdtools/"
55
description = "Tool for modifying bugs in CMSIS SVD"
66
authors = [

src/cli.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ impl Command {
224224
},
225225
)?;
226226
let response = request.process(&device)?;
227-
println!("{response}")
227+
print!("{response}")
228228
}
229229
}
230230
Ok(())

0 commit comments

Comments
 (0)