Skip to content

Commit

Permalink
Merge pull request #808 from knurling-rs/release
Browse files Browse the repository at this point in the history
Release defmt v0.3.6 (and others)
  • Loading branch information
Urhengulas authored Feb 7, 2024
2 parents 0d42c4c + f149fa8 commit e1fd1e6
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 10 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [v0.3.6] - 2024-02-05

- [#804]: `CI`: Remove mdbook strategy
- [#803]: `CI`: Disable nightly qemu-snapshot tests
- [#789]: `defmt`: Add support for new time-related display hints
Expand Down Expand Up @@ -603,7 +605,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

Initial release

[Unreleased]: https://github.com/knurling-rs/defmt/compare/defmt-v0.3.5...main
[Unreleased]: https://github.com/knurling-rs/defmt/compare/defmt-v0.3.6...main
[v0.3.6]: https://github.com/knurling-rs/defmt/compare/defmt-v0.3.5...defmt-v0.3.6
[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
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.9"
version = "0.3.10"

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

Expand Down
2 changes: 1 addition & 1 deletion defmt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.5"
version = "0.3.6"

[features]
alloc = []
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.6"
version = "0.3.7"

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

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

[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.10"
version = "0.3.11"

# 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.9", path = "../decoder", features = [
defmt-decoder = { version = "=0.3.10", 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.9", path = "../decoder", features = [
defmt-decoder = { version = "=0.3.10", path = "../decoder", features = [
"unstable",
] }

0 comments on commit e1fd1e6

Please sign in to comment.