Skip to content

Commit

Permalink
Release v0.3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
Urhengulas committed Nov 7, 2024
1 parent 60ea3a5 commit ac1673d
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 15 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.9] - 2024-09-13

- [#884]: Upgrade dependencies: notify is now at v7, thiserror is now at v2
- [#883]: Mark decoder and parser not as unstable anymore
- [#880]: Merge function calls emitted by the macro to save space.
Expand Down Expand Up @@ -681,7 +683,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

Initial release

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

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

Expand Down
4 changes: 2 additions & 2 deletions 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.8"
version = "0.3.9"

[features]
alloc = []
Expand Down Expand Up @@ -43,7 +43,7 @@ encoding-rzcobs = []
unstable-test = [ "defmt-macros/unstable-test" ]

[dependencies]
defmt-macros = { path = "../macros", version = "0.3.2" }
defmt-macros = { path = "../macros", version = "0.3.10" }
bitflags = "1"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion firmware/defmt-semihosting/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ edition = "2021"
license = "MIT OR Apache-2.0"
name = "defmt-semihosting"
publish = false
version = "0.1.0"
version = "0.0.0"

[dependencies]
defmt = { path = "../../defmt" }
Expand Down
2 changes: 1 addition & 1 deletion firmware/qemu/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ edition = "2021"
license = "MIT OR Apache-2.0"
name = "firmware"
publish = false
version = "0.1.0"
version = "0.0.0"

[[test]]
name = "defmt-test"
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.9"
version = "0.3.10"

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

[dependencies]
defmt-parser = { version = "=0.3.4", path = "../parser" }
defmt-parser = { version = "=0.4.0", path = "../parser" }
proc-macro-error2 = "2"
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.4"
version = "0.4.0"

[dependencies]
thiserror = "2"
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.12"
version = "0.3.13"

# 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.11", path = "../decoder" }
defmt-decoder = { version = "=0.4.0", path = "../decoder" }
log = "0.4"
notify = "7"
tokio = { version = "1.38", features = ["full"] }
4 changes: 2 additions & 2 deletions qemu-run/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ edition = "2021"
license = "MIT OR Apache-2.0"
name = "qemu-run"
publish = false
version = "0.1.0"
version = "0.0.0"

[dependencies]
anyhow = "1"
defmt-decoder = { version = "=0.3.11", path = "../decoder" }
defmt-decoder = { version = "=0.4.0", path = "../decoder" }
2 changes: 1 addition & 1 deletion xtask/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ authors = ["The Knurling-rs developers"]
edition = "2021"
license = "MIT OR Apache-2.0"
publish = false
version = "0.1.0"
version = "0.0.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down

0 comments on commit ac1673d

Please sign in to comment.