From bca41d43ab03ca699f5bfe6c3a2744819b81ac62 Mon Sep 17 00:00:00 2001 From: "Jonathan Pallant (Ferrous Systems)" Date: Fri, 26 Nov 2021 15:47:54 +0000 Subject: [PATCH] Bump all versions to 0.3.1. --- book/src/encoding.md | 2 +- decoder/Cargo.toml | 4 ++-- defmt/Cargo.toml | 2 +- firmware/defmt-itm/Cargo.toml | 2 +- firmware/defmt-rtt/Cargo.toml | 2 +- firmware/defmt-test/Cargo.toml | 4 ++-- firmware/defmt-test/macros/Cargo.toml | 2 +- firmware/panic-probe/Cargo.toml | 2 +- macros/Cargo.toml | 4 ++-- parser/Cargo.toml | 2 +- print/Cargo.toml | 4 ++-- qemu-run/Cargo.toml | 2 +- 12 files changed, 16 insertions(+), 16 deletions(-) diff --git a/book/src/encoding.md b/book/src/encoding.md index 6ec5f2fe..6e79eca1 100644 --- a/book/src/encoding.md +++ b/book/src/encoding.md @@ -20,7 +20,7 @@ These Cargo features are named `encoding-{encoder_name}`, e.g. `encoding-rzcobs` name = "my-application" [dependencies.defmt] -version = "0.3.0" +version = "0.3.1" features = ["encoding-rzcobs"] # <- encoding ``` diff --git a/decoder/Cargo.toml b/decoder/Cargo.toml index ecdff46f..8f5e07ab 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.0" +version = "0.3.1" [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..46bd4395 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 = [] diff --git a/firmware/defmt-itm/Cargo.toml b/firmware/defmt-itm/Cargo.toml index d34c8fac..2b551358 100644 --- a/firmware/defmt-itm/Cargo.toml +++ b/firmware/defmt-itm/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0" name = "defmt-itm" readme = "README.md" repository = "https://github.com/knurling-rs/defmt" -version = "0.3.0" +version = "0.3.1" [dependencies] cortex-m = "0.7" diff --git a/firmware/defmt-rtt/Cargo.toml b/firmware/defmt-rtt/Cargo.toml index bc25aa2f..4bc53437 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.0" +version = "0.3.1" [dependencies] cortex-m = "0.7" diff --git a/firmware/defmt-test/Cargo.toml b/firmware/defmt-test/Cargo.toml index 3b92316c..f3b0e870 100644 --- a/firmware/defmt-test/Cargo.toml +++ b/firmware/defmt-test/Cargo.toml @@ -8,10 +8,10 @@ license = "MIT OR Apache-2.0" name = "defmt-test" readme = "README.md" repository = "https://github.com/knurling-rs/defmt" -version = "0.3.0" +version = "0.3.1" [dependencies] cortex-m = "0.7" cortex-m-rt = "0.7" defmt = { version = "0.3", path = "../../defmt" } -defmt-test-macros = { version = "=0.3.0", path = "macros" } +defmt-test-macros = { version = "=0.3.1", path = "macros" } diff --git a/firmware/defmt-test/macros/Cargo.toml b/firmware/defmt-test/macros/Cargo.toml index 8cfc59c6..55764d34 100644 --- a/firmware/defmt-test/macros/Cargo.toml +++ b/firmware/defmt-test/macros/Cargo.toml @@ -7,7 +7,7 @@ license = "MIT OR Apache-2.0" name = "defmt-test-macros" readme = "../README.md" repository = "https://github.com/knurling-rs/defmt" -version = "0.3.0" +version = "0.3.1" [lib] proc-macro = true diff --git a/firmware/panic-probe/Cargo.toml b/firmware/panic-probe/Cargo.toml index 46e2fc33..e7125109 100644 --- a/firmware/panic-probe/Cargo.toml +++ b/firmware/panic-probe/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0" name = "panic-probe" readme = "README.md" repository = "https://github.com/knurling-rs/defmt" -version = "0.3.0" +version = "0.3.1" [dependencies] cortex-m = "0.7" diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 1282b90d..3c909f8b 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.0" +version = "0.3.1" [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 0dbb7c53..9fd01c24 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.0" +version = "0.3.1" # 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.0" } +defmt-decoder = { path = "../decoder", features = ["unstable"], version = "=0.3.1" } log = "0.4" structopt = "0.3" diff --git a/qemu-run/Cargo.toml b/qemu-run/Cargo.toml index f82f9b74..0241956b 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.0" } +defmt-decoder = { path = "../decoder", features = ["unstable"], version = "=0.3.1" }