From 2312f7feafb25b4f63b0985be4ae13078af5bdf2 Mon Sep 17 00:00:00 2001 From: Andrey Zgarbul Date: Tue, 2 Jul 2024 06:38:03 +0300 Subject: [PATCH] release 0.3.15 --- CHANGELOG-rust.md | 6 +++++- Cargo.toml | 2 +- src/cli.rs | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG-rust.md b/CHANGELOG-rust.md index ebca2346..3affec87 100644 --- a/CHANGELOG-rust.md +++ b/CHANGELOG-rust.md @@ -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 @@ -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 diff --git a/Cargo.toml b/Cargo.toml index acd9b8f4..122bc0d8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 = [ diff --git a/src/cli.rs b/src/cli.rs index af0d670e..0db90b37 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -224,7 +224,7 @@ impl Command { }, )?; let response = request.process(&device)?; - println!("{response}") + print!("{response}") } } Ok(())