Skip to content

Commit

Permalink
bump crate versions
Browse files Browse the repository at this point in the history
  • Loading branch information
japaric committed Mar 10, 2022
1 parent eba643a commit 5bf22f3
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions decoder/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions defmt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ 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 = []

# 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.

Expand Down
2 changes: 1 addition & 1 deletion firmware/defmt-rtt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down
4 changes: 2 additions & 2 deletions macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = []
Expand Down
4 changes: 2 additions & 2 deletions print/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit 5bf22f3

Please sign in to comment.