From 5bf22f322b8913be845849fc5530aef2a37eb323 Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Thu, 10 Mar 2022 12:30:27 +0100 Subject: [PATCH 1/3] bump crate versions --- decoder/Cargo.toml | 4 ++-- defmt/Cargo.toml | 4 ++-- firmware/defmt-rtt/Cargo.toml | 2 +- macros/Cargo.toml | 4 ++-- parser/Cargo.toml | 2 +- print/Cargo.toml | 4 ++-- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/decoder/Cargo.toml b/decoder/Cargo.toml index 32794fba..b4dc939b 100644 --- a/decoder/Cargo.toml +++ b/decoder/Cargo.toml @@ -7,10 +7,10 @@ license = "MIT OR Apache-2.0" name = "defmt-decoder" readme = "../README.md" repository = "https://github.com/knurling-rs/defmt" -version = "0.3.1" +version = "0.3.2" [dependencies] -defmt-parser = { path = "../parser", features = ["unstable"], version = "=0.3.0" } +defmt-parser = { path = "../parser", features = ["unstable"], version = "=0.3.1" } byteorder = "1" colored = "2" ryu = "1" diff --git a/defmt/Cargo.toml b/defmt/Cargo.toml index 9aeb2b6f..34dd15ba 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.0" +version = "0.3.1" [features] alloc = [] @@ -23,7 +23,7 @@ alloc = [] # Encoding feature flags. These should only be set by end-user crates, not by library crates. # # If no encoding is selected, `defmt` will assume the encoding is "don't care" and -# will pick a default one. The current default is `encoding-rzcobs`. The default may change +# will pick a default one. The current default is `encoding-rzcobs`. The default may change # in minor releases, changing it is not considered a breaking change since all encodings # are guaranteed to be supported by the corresponding `defmt-decoder` version. diff --git a/firmware/defmt-rtt/Cargo.toml b/firmware/defmt-rtt/Cargo.toml index 3459ae93..f585be04 100644 --- a/firmware/defmt-rtt/Cargo.toml +++ b/firmware/defmt-rtt/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0" name = "defmt-rtt" readme = "README.md" repository = "https://github.com/knurling-rs/defmt" -version = "0.3.1" +version = "0.3.2" [dependencies] defmt = { version = "0.3", path = "../../defmt" } diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 3352c663..57569d66 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.1" +version = "0.3.2" [lib] proc-macro = true @@ -17,7 +17,7 @@ proc-macro = true unstable-test = [] [dependencies] -defmt-parser = { path = "../parser", features = ["unstable"], version = "=0.3.0" } +defmt-parser = { path = "../parser", features = ["unstable"], version = "=0.3.1" } proc-macro-error = "1" proc-macro2 = "1" quote = "1" diff --git a/parser/Cargo.toml b/parser/Cargo.toml index 3a0cd337..5eb308f5 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.0" +version = "0.3.1" [features] unstable = [] diff --git a/print/Cargo.toml b/print/Cargo.toml index 9fd01c24..d363a584 100644 --- a/print/Cargo.toml +++ b/print/Cargo.toml @@ -8,12 +8,12 @@ license = "MIT OR Apache-2.0" name = "defmt-print" readme = "README.md" repository = "https://github.com/knurling-rs/defmt" -version = "0.3.1" +version = "0.3.2" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] anyhow = "1" -defmt-decoder = { path = "../decoder", features = ["unstable"], version = "=0.3.1" } +defmt-decoder = { path = "../decoder", features = ["unstable"], version = "=0.3.2" } log = "0.4" structopt = "0.3" From e4f590d2260ec3c42b1aeee7c4191f4646b8f564 Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Thu, 10 Mar 2022 12:38:46 +0100 Subject: [PATCH 2/3] also update qemu-run Cargo.toml --- qemu-run/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qemu-run/Cargo.toml b/qemu-run/Cargo.toml index 0241956b..6948e731 100644 --- a/qemu-run/Cargo.toml +++ b/qemu-run/Cargo.toml @@ -8,4 +8,4 @@ version = "0.1.0" [dependencies] anyhow = "1" -defmt-decoder = { path = "../decoder", features = ["unstable"], version = "=0.3.1" } +defmt-decoder = { path = "../decoder", features = ["unstable"], version = "=0.3.2" } From 94dc892fcad611e7cb6bb6186879593817be8634 Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Thu, 10 Mar 2022 13:24:46 +0100 Subject: [PATCH 3/3] new changelog section --- CHANGELOG.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 383c05a6..fc569288 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [0.3.2] - 2022-03-10 + ### Added - [#662]: `#[derive(Format)]` now accepts attribute fields to format fields using the `Debug2Format` adapter instead of a `Format` implementation. @@ -454,7 +456,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). Initial release -[Unreleased]: https://github.com/knurling-rs/defmt/compare/defmt-v0.3.1...main +[Unreleased]: https://github.com/knurling-rs/defmt/compare/defmt-v0.3.2...main +[v0.3.2]: https://github.com/knurling-rs/defmt/compare/defmt-v0.3.1...defmt-v0.3.2 [v0.3.1]: https://github.com/knurling-rs/defmt/compare/defmt-v0.3.0...defmt-v0.3.1 [v0.3.0]: https://github.com/knurling-rs/defmt/compare/defmt-v0.2.3...defmt-v0.3.0 [v0.2.3]: https://github.com/knurling-rs/defmt/compare/defmt-v0.2.2...defmt-v0.2.3