Skip to content

Commit

Permalink
Merge pull request #232 from rust-embedded/r0315
Browse files Browse the repository at this point in the history
release 0.3.15
  • Loading branch information
burrbull authored Jul 2, 2024
2 parents df11336 + 2312f7f commit dae92c6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG-rust.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ This changelog tracks the Rust `svdtools` project. See

## [Unreleased]

## [v0.3.15] 2024-07-02

* Add `info` tool, only with `device-name` for now
* Add `expand-patch` tool to show full patch rule with all includes

## [v0.3.14] 2024-04-04
Expand Down Expand Up @@ -164,7 +167,8 @@ Other changes:

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

[Unreleased]: https://github.com/rust-embedded/svdtools/compare/v0.3.14...HEAD
[Unreleased]: https://github.com/rust-embedded/svdtools/compare/v0.3.15...HEAD
[v0.3.15]: https://github.com/rust-embedded/svdtools/compare/v0.3.14...v0.3.15
[v0.3.14]: https://github.com/rust-embedded/svdtools/compare/v0.3.13...v0.3.14
[v0.3.13]: https://github.com/rust-embedded/svdtools/compare/v0.3.12...v0.3.13
[v0.3.12]: https://github.com/rust-embedded/svdtools/compare/v0.3.11...v0.3.12
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "svdtools"
version = "0.3.14"
version = "0.3.15"
repository = "https://github.com/rust-embedded/svdtools/"
description = "Tool for modifying bugs in CMSIS SVD"
authors = [
Expand Down
2 changes: 1 addition & 1 deletion src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ impl Command {
},
)?;
let response = request.process(&device)?;
println!("{response}")
print!("{response}")
}
}
Ok(())
Expand Down

0 comments on commit dae92c6

Please sign in to comment.