Skip to content

Commit 064ba39

Browse files
Merge #745
745: Release `defmt-v0.3.3`, `defmt-decoder-v0.3.5`, `defmt-macros v0.3.4`, `defmt-parser v0.3.2`, `defmt-print v0.3.5` and `panic-probe v0.3.1` r=Urhengulas a=Urhengulas Co-authored-by: Urhengulas <[email protected]>
2 parents 59c14b9 + 68fb261 commit 064ba39

File tree

8 files changed

+19
-18
lines changed

8 files changed

+19
-18
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10+
## [v0.3.3] - 2023-03-29
11+
12+
- [#745]: Release `defmt-v0.3.3`, `defmt-decoder-v0.3.5`, `defmt-macros v0.3.4`, `defmt-parser v0.3.2`, `defmt-print v0.3.5` and `panic-probe v0.3.1`
1013
- [#744]: `defmt-parser`: Clean and simplify
1114
- [#742]: `defmt-decoder`: Include crate name in symbol name
1215
- [#743]: `defmt-parser`: Simplify tests with `rstest`
@@ -18,6 +21,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1821
- [#603]: `defmt`: Raw pointers now print as `0x1234` instead of `1234`
1922
- [#536]: `defmt-parser`: Switch to using an enum for errors, and add some help text pointing you to the defmt docs if you use the wrong type specifier in a format string.
2023

24+
[#745]: https://github.com/knurling-rs/defmt/pull/745
2125
[#744]: https://github.com/knurling-rs/defmt/pull/744
2226
[#742]: https://github.com/knurling-rs/defmt/pull/742
2327
[#743]: https://github.com/knurling-rs/defmt/pull/743
@@ -531,7 +535,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
531535

532536
Initial release
533537

534-
[Unreleased]: https://github.com/knurling-rs/defmt/compare/defmt-v0.3.2...main
538+
[Unreleased]: https://github.com/knurling-rs/defmt/compare/defmt-v0.3.3...main
539+
[v0.3.2]: https://github.com/knurling-rs/defmt/compare/defmt-v0.3.2...defmt-v0.3.3
535540
[v0.3.2]: https://github.com/knurling-rs/defmt/compare/defmt-v0.3.1...defmt-v0.3.2
536541
[v0.3.1]: https://github.com/knurling-rs/defmt/compare/defmt-v0.3.0...defmt-v0.3.1
537542
[v0.3.0]: https://github.com/knurling-rs/defmt/compare/defmt-v0.2.3...defmt-v0.3.0

decoder/Cargo.toml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,12 @@ license = "MIT OR Apache-2.0"
77
name = "defmt-decoder"
88
readme = "../README.md"
99
repository = "https://github.com/knurling-rs/defmt"
10-
version = "0.3.4"
10+
version = "0.3.5"
1111

1212
[dependencies]
13-
defmt-parser = { version = "=0.3.1", path = "../parser", features = [
14-
"unstable",
15-
] }
1613
byteorder = "1"
1714
colored = "2"
15+
defmt-parser = { version = "=0.3.2", path = "../parser", features = ["unstable"] }
1816
ryu = "1"
1917

2018
# display

defmt/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ name = "defmt"
1515
readme = "../README.md"
1616
repository = "https://github.com/knurling-rs/defmt"
1717
homepage = "https://knurling.ferrous-systems.com/"
18-
version = "0.3.2"
18+
version = "0.3.3"
1919

2020
[features]
2121
alloc = []

firmware/panic-probe/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ license = "MIT OR Apache-2.0"
88
name = "panic-probe"
99
readme = "README.md"
1010
repository = "https://github.com/knurling-rs/defmt"
11-
version = "0.3.0"
11+
version = "0.3.1"
1212

1313
[dependencies]
1414
cortex-m = "0.7"
1515
defmt = { version = "0.3", path = "../../defmt", optional = true }
16-
rtt-target = { version = "0.3", optional = true }
16+
rtt-target = { version = "0.4", optional = true }
1717

1818

1919
[features]

macros/Cargo.toml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license = "MIT OR Apache-2.0"
77
name = "defmt-macros"
88
readme = "../README.md"
99
repository = "https://github.com/knurling-rs/defmt"
10-
version = "0.3.3"
10+
version = "0.3.4"
1111

1212
[lib]
1313
proc-macro = true
@@ -17,9 +17,7 @@ proc-macro = true
1717
unstable-test = []
1818

1919
[dependencies]
20-
defmt-parser = { version = "0.3.1", path = "../parser", features = [
21-
"unstable",
22-
] }
20+
defmt-parser = { version = "=0.3.2", path = "../parser", features = ["unstable"] }
2321
proc-macro-error = "1"
2422
proc-macro2 = "1"
2523
quote = "1"
@@ -29,4 +27,4 @@ syn = { version = "1.0.101", features = ["full"] }
2927
[dev-dependencies]
3028
maplit = "1"
3129
pretty_assertions = "1"
32-
rstest = { version = "0.16", default-features = false }
30+
rstest = { version = "0.17", default-features = false }

parser/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ license = "MIT OR Apache-2.0"
77
name = "defmt-parser"
88
readme = "../README.md"
99
repository = "https://github.com/knurling-rs/defmt"
10-
version = "0.3.1"
10+
version = "0.3.2"
1111

1212
[dependencies]
1313
thiserror = "1.0"
1414

1515
[dev-dependencies]
16-
rstest = { version = "0.16", default-features = false }
16+
rstest = { version = "0.17", default-features = false }
1717

1818
[features]
1919
unstable = []

print/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ license = "MIT OR Apache-2.0"
88
name = "defmt-print"
99
readme = "README.md"
1010
repository = "https://github.com/knurling-rs/defmt"
11-
version = "0.3.4"
11+
version = "0.3.5"
1212

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

1515
[dependencies]
1616
anyhow = "1"
1717
clap = { version = "4.0", features = ["derive", "env"] }
18-
defmt-decoder = { version = "=0.3.4", path = "../decoder", features = [
18+
defmt-decoder = { version = "=0.3.5", path = "../decoder", features = [
1919
"unstable",
2020
] }
2121
log = "0.4"

qemu-run/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ version = "0.1.0"
88

99
[dependencies]
1010
anyhow = "1"
11-
defmt-decoder = { version = "=0.3.4", path = "../decoder", features = [
11+
defmt-decoder = { version = "=0.3.5", path = "../decoder", features = [
1212
"unstable",
1313
] }

0 commit comments

Comments
 (0)