From ac1673da3fd4641b9e07eaa254e7a2ccb442a1e2 Mon Sep 17 00:00:00 2001 From: Johann Hemmann Date: Thu, 12 Sep 2024 15:03:58 +0200 Subject: [PATCH] Release v0.3.9 --- CHANGELOG.md | 5 ++++- decoder/Cargo.toml | 4 ++-- defmt/Cargo.toml | 4 ++-- firmware/defmt-semihosting/Cargo.toml | 2 +- firmware/qemu/Cargo.toml | 2 +- macros/Cargo.toml | 4 ++-- parser/Cargo.toml | 2 +- print/Cargo.toml | 4 ++-- qemu-run/Cargo.toml | 4 ++-- xtask/Cargo.toml | 2 +- 10 files changed, 18 insertions(+), 15 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b2e51cf..1b3327f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.3.9] - 2024-09-13 + - [#884]: Upgrade dependencies: notify is now at v7, thiserror is now at v2 - [#883]: Mark decoder and parser not as unstable anymore - [#880]: Merge function calls emitted by the macro to save space. @@ -681,7 +683,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). Initial release -[Unreleased]: https://github.com/knurling-rs/defmt/compare/defmt-v0.3.8...main +[Unreleased]: https://github.com/knurling-rs/defmt/compare/defmt-v0.3.9...main +[v0.3.9]: https://github.com/knurling-rs/defmt/compare/defmt-v0.3.8...defmt-v0.3.9 [v0.3.8]: https://github.com/knurling-rs/defmt/compare/defmt-v0.3.7...defmt-v0.3.8 [v0.3.7]: https://github.com/knurling-rs/defmt/compare/defmt-v0.3.6...defmt-v0.3.7 [v0.3.6]: https://github.com/knurling-rs/defmt/compare/defmt-v0.3.5...defmt-v0.3.6 diff --git a/decoder/Cargo.toml b/decoder/Cargo.toml index 8f1751fa..95642e65 100644 --- a/decoder/Cargo.toml +++ b/decoder/Cargo.toml @@ -7,12 +7,12 @@ license = "MIT OR Apache-2.0" name = "defmt-decoder" readme = "../README.md" repository = "https://github.com/knurling-rs/defmt" -version = "0.3.11" +version = "0.4.0" [dependencies] byteorder = "1" colored = "2" -defmt-parser = { version = "=0.3.4", path = "../parser" } +defmt-parser = { version = "=0.4.0", path = "../parser" } ryu = "1" nom = "7" diff --git a/defmt/Cargo.toml b/defmt/Cargo.toml index d24555db..9c320ff2 100644 --- a/defmt/Cargo.toml +++ b/defmt/Cargo.toml @@ -15,7 +15,7 @@ name = "defmt" readme = "../README.md" repository = "https://github.com/knurling-rs/defmt" homepage = "https://knurling.ferrous-systems.com/" -version = "0.3.8" +version = "0.3.9" [features] alloc = [] @@ -43,7 +43,7 @@ encoding-rzcobs = [] unstable-test = [ "defmt-macros/unstable-test" ] [dependencies] -defmt-macros = { path = "../macros", version = "0.3.2" } +defmt-macros = { path = "../macros", version = "0.3.10" } bitflags = "1" [dev-dependencies] diff --git a/firmware/defmt-semihosting/Cargo.toml b/firmware/defmt-semihosting/Cargo.toml index a6214715..c47d6530 100644 --- a/firmware/defmt-semihosting/Cargo.toml +++ b/firmware/defmt-semihosting/Cargo.toml @@ -4,7 +4,7 @@ edition = "2021" license = "MIT OR Apache-2.0" name = "defmt-semihosting" publish = false -version = "0.1.0" +version = "0.0.0" [dependencies] defmt = { path = "../../defmt" } diff --git a/firmware/qemu/Cargo.toml b/firmware/qemu/Cargo.toml index c4ac9929..6279fee3 100644 --- a/firmware/qemu/Cargo.toml +++ b/firmware/qemu/Cargo.toml @@ -4,7 +4,7 @@ edition = "2021" license = "MIT OR Apache-2.0" name = "firmware" publish = false -version = "0.1.0" +version = "0.0.0" [[test]] name = "defmt-test" diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 6f377578..fbc1343c 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -7,7 +7,7 @@ license = "MIT OR Apache-2.0" name = "defmt-macros" readme = "../README.md" repository = "https://github.com/knurling-rs/defmt" -version = "0.3.9" +version = "0.3.10" [lib] proc-macro = true @@ -17,7 +17,7 @@ proc-macro = true unstable-test = [] [dependencies] -defmt-parser = { version = "=0.3.4", path = "../parser" } +defmt-parser = { version = "=0.4.0", path = "../parser" } proc-macro-error2 = "2" proc-macro2 = "1" quote = "1" diff --git a/parser/Cargo.toml b/parser/Cargo.toml index b32f9b7e..df01da87 100644 --- a/parser/Cargo.toml +++ b/parser/Cargo.toml @@ -7,7 +7,7 @@ license = "MIT OR Apache-2.0" name = "defmt-parser" readme = "../README.md" repository = "https://github.com/knurling-rs/defmt" -version = "0.3.4" +version = "0.4.0" [dependencies] thiserror = "2" diff --git a/print/Cargo.toml b/print/Cargo.toml index adde7d01..802c4327 100644 --- a/print/Cargo.toml +++ b/print/Cargo.toml @@ -8,14 +8,14 @@ license = "MIT OR Apache-2.0" name = "defmt-print" readme = "README.md" repository = "https://github.com/knurling-rs/defmt" -version = "0.3.12" +version = "0.3.13" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] anyhow = "1" clap = { version = "4.0", features = ["derive", "env"] } -defmt-decoder = { version = "=0.3.11", path = "../decoder" } +defmt-decoder = { version = "=0.4.0", path = "../decoder" } log = "0.4" notify = "7" tokio = { version = "1.38", features = ["full"] } diff --git a/qemu-run/Cargo.toml b/qemu-run/Cargo.toml index 9e974f4b..2d9a60de 100644 --- a/qemu-run/Cargo.toml +++ b/qemu-run/Cargo.toml @@ -4,8 +4,8 @@ edition = "2021" license = "MIT OR Apache-2.0" name = "qemu-run" publish = false -version = "0.1.0" +version = "0.0.0" [dependencies] anyhow = "1" -defmt-decoder = { version = "=0.3.11", path = "../decoder" } +defmt-decoder = { version = "=0.4.0", path = "../decoder" } diff --git a/xtask/Cargo.toml b/xtask/Cargo.toml index d270c0e8..f4beb866 100644 --- a/xtask/Cargo.toml +++ b/xtask/Cargo.toml @@ -4,7 +4,7 @@ authors = ["The Knurling-rs developers"] edition = "2021" license = "MIT OR Apache-2.0" publish = false -version = "0.1.0" +version = "0.0.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html