From 5bf22f322b8913be845849fc5530aef2a37eb323 Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Thu, 10 Mar 2022 12:30:27 +0100 Subject: [PATCH] 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"