Skip to content

Commit

Permalink
Merge #754
Browse files Browse the repository at this point in the history
754: Release `defmt-decoder v0.3.7`, `defmt-macros v0.3.5`, `defmt-parser v0.3.3`, `defmt-print v0.3.7` r=Urhengulas a=Urhengulas



Co-authored-by: Johann Hemmann <johann.hemmann@code.berlin>
  • Loading branch information
bors[bot] and Urhengulas authored May 5, 2023
2 parents d58633f + 11a2d43 commit 9508fd5
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 9 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [v0.3.5] - 2023-05-05

- [#xxx]: Release `defmt-decoder v0.3.7`, `defmt-macros v0.3.5`, `defmt-parser v0.3.3`, `defmt-print v0.3.7`
- [#750]: Add support for decoding wire format version 3

[#xxx]: https://github.com/knurling-rs/defmt/pull/xxx
[#750]: https://github.com/knurling-rs/defmt/pull/750

## [v0.3.4] - 2023-04-05
Expand Down Expand Up @@ -547,7 +551,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

Initial release

[Unreleased]: https://github.com/knurling-rs/defmt/compare/defmt-v0.3.4...main
[Unreleased]: https://github.com/knurling-rs/defmt/compare/defmt-v0.3.5...main
[v0.3.5]: https://github.com/knurling-rs/defmt/compare/defmt-v0.3.4...defmt-v0.3.5
[v0.3.4]: https://github.com/knurling-rs/defmt/compare/defmt-v0.3.3...defmt-v0.3.4
[v0.3.3]: https://github.com/knurling-rs/defmt/compare/defmt-v0.3.2...defmt-v0.3.3
[v0.3.2]: https://github.com/knurling-rs/defmt/compare/defmt-v0.3.1...defmt-v0.3.2
Expand Down
4 changes: 2 additions & 2 deletions decoder/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.6"
version = "0.3.7"

[dependencies]
byteorder = "1"
colored = "2"
defmt-parser = { version = "=0.3.2", path = "../parser", features = ["unstable"] }
defmt-parser = { version = "=0.3.3", path = "../parser", features = ["unstable"] }
ryu = "1"

# display
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.4"
version = "0.3.5"

[lib]
proc-macro = true
Expand All @@ -17,7 +17,7 @@ proc-macro = true
unstable-test = []

[dependencies]
defmt-parser = { version = "=0.3.2", path = "../parser", features = ["unstable"] }
defmt-parser = { version = "=0.3.3", path = "../parser", features = ["unstable"] }
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.2"
version = "0.3.3"

[dependencies]
thiserror = "1.0"
Expand Down
4 changes: 2 additions & 2 deletions print/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.6"
version = "0.3.7"

# 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.6", path = "../decoder", features = [
defmt-decoder = { version = "=0.3.7", path = "../decoder", features = [
"unstable",
] }
log = "0.4"
2 changes: 1 addition & 1 deletion qemu-run/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ version = "0.1.0"

[dependencies]
anyhow = "1"
defmt-decoder = { version = "=0.3.6", path = "../decoder", features = [
defmt-decoder = { version = "=0.3.7", path = "../decoder", features = [
"unstable",
] }

0 comments on commit 9508fd5

Please sign in to comment.