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 6, 2024
1 parent 7d74e8b commit 7a02316
Show file tree
Hide file tree
Showing 10 changed files with 23 additions and 20 deletions.
17 changes: 10 additions & 7 deletions 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

- [#880]: Merge function calls emitted by the macro to save space.
- [#874]: `defmt`: Fix doc test
- [#872]: `defmt`: Add `expect!` as alias for `unwrap!` for discoverability
Expand Down Expand Up @@ -53,7 +55,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
[#839]: https://github.com/knurling-rs/defmt/pull/839
[#838]: https://github.com/knurling-rs/defmt/pull/838

## defmt-macros v0.3.9
### defmt-macros v0.3.9

- [#835]: `macros`: Fix some `defmt` crate name usage

Expand Down Expand Up @@ -90,7 +92,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
[#789]: https://github.com/knurling-rs/defmt/pull/789
[#783]: https://github.com/knurling-rs/defmt/pull/783

## defmt-decoder v0.3.9, defmt-print v0.3.10 - 2023-10-04
### defmt-decoder v0.3.9, defmt-print v0.3.10 - 2023-10-04

- [#784]: `defmt-decoder`: Prepare `defmt-decoder v0.3.9` release
- [#781]: `defmt-decoder`: Add `pub struct Formatter` to `defmt_decoder::log`
Expand All @@ -108,7 +110,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
[#771]: https://github.com/knurling-rs/defmt/pull/771
[#769]: https://github.com/knurling-rs/defmt/pull/769

## defmt-decoder v0.3.8, defmt-print v0.3.8 - 2023-08-01
### defmt-decoder v0.3.8, defmt-print v0.3.8 - 2023-08-01

- [#766] `decoder::log`: Rename `PrettyLogger` to `StdoutLogger`
- [#765]: `defmt-decoder`: Add support for customizable logger formatting
Expand All @@ -132,7 +134,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
[#756]: https://github.com/knurling-rs/defmt/pull/756
[#753]: https://github.com/knurling-rs/defmt/pull/753

## defmt-decoder v0.3.7, defmt-macros v0.3.5, defmt-parser v0.3.3, defmt-print v0.3.7 - 2023-05-05
### defmt-decoder v0.3.7, defmt-macros v0.3.5, defmt-parser v0.3.3, defmt-print v0.3.7 - 2023-05-05

- [#754]: 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
Expand Down Expand Up @@ -174,7 +176,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
[#603]: https://github.com/knurling-rs/defmt/pull/734
[#536]: https://github.com/knurling-rs/defmt/pull/735

## defmt-decoder v0.3.4, defmt-print v0.3.4
### defmt-decoder v0.3.4, defmt-print v0.3.4

- [#729]: Release `defmt-decoder v0.3.4`, `defmt-print v0.3.4`
- [#726]: `defmt-decoder`: Remove difference in favor of dissimilar
Expand All @@ -191,7 +193,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
[#710]: https://github.com/knurling-rs/defmt/pull/710
[#706]: https://github.com/knurling-rs/defmt/pull/706

## defmt-decoder v0.3.3, defmt-macros v0.3.3, defmt-print v0.3.3, vdefmt-rtt 0.4.0
### defmt-decoder v0.3.3, defmt-macros v0.3.3, defmt-print v0.3.3, vdefmt-rtt 0.4.0
- [#704]: Release `defmt-macros 0.3.3`, `defmt-print 0.3.3`, `defmt-rtt 0.4.0`
- [#703]: `defmt-print`: Update to `clap 4.0`.
- [#701]: `defmt-rtt`: Pre-relase cleanup
Expand Down Expand Up @@ -676,7 +678,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", features = ["unstable"] }
defmt-parser = { version = "=0.4.0", path = "../parser", features = ["unstable"] }
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
2 changes: 1 addition & 1 deletion 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 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 = "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.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", features = [
defmt-decoder = { version = "=0.4.0", path = "../decoder", features = [
"unstable",
] }
log = "0.4"
Expand Down
4 changes: 2 additions & 2 deletions qemu-run/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ 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", features = [
defmt-decoder = { version = "=0.4.0", path = "../decoder", features = [
"unstable",
] }
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 7a02316

Please sign in to comment.