Skip to content

Commit e1fd1e6

Browse files
authored
Merge pull request #808 from knurling-rs/release
Release defmt v0.3.6 (and others)
2 parents 0d42c4c + f149fa8 commit e1fd1e6

File tree

7 files changed

+13
-10
lines changed

7 files changed

+13
-10
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [v0.3.6] - 2024-02-05
11+
1012
- [#804]: `CI`: Remove mdbook strategy
1113
- [#803]: `CI`: Disable nightly qemu-snapshot tests
1214
- [#789]: `defmt`: Add support for new time-related display hints
@@ -603,7 +605,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
603605

604606
Initial release
605607

606-
[Unreleased]: https://github.com/knurling-rs/defmt/compare/defmt-v0.3.5...main
608+
[Unreleased]: https://github.com/knurling-rs/defmt/compare/defmt-v0.3.6...main
609+
[v0.3.6]: https://github.com/knurling-rs/defmt/compare/defmt-v0.3.5...defmt-v0.3.6
607610
[v0.3.5]: https://github.com/knurling-rs/defmt/compare/defmt-v0.3.4...defmt-v0.3.5
608611
[v0.3.4]: https://github.com/knurling-rs/defmt/compare/defmt-v0.3.3...defmt-v0.3.4
609612
[v0.3.3]: https://github.com/knurling-rs/defmt/compare/defmt-v0.3.2...defmt-v0.3.3

decoder/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +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.9"
10+
version = "0.3.10"
1111

1212
[dependencies]
1313
byteorder = "1"
1414
colored = "2"
15-
defmt-parser = { version = "=0.3.3", path = "../parser", features = ["unstable"] }
15+
defmt-parser = { version = "=0.3.4", path = "../parser", features = ["unstable"] }
1616
ryu = "1"
1717
nom = "7"
1818

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.5"
18+
version = "0.3.6"
1919

2020
[features]
2121
alloc = []

macros/Cargo.toml

Lines changed: 2 additions & 2 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.6"
10+
version = "0.3.7"
1111

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

1919
[dependencies]
20-
defmt-parser = { version = "=0.3.3", path = "../parser", features = ["unstable"] }
20+
defmt-parser = { version = "=0.3.4", path = "../parser", features = ["unstable"] }
2121
proc-macro-error = "1"
2222
proc-macro2 = "1"
2323
quote = "1"

parser/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ 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.3"
10+
version = "0.3.4"
1111

1212
[dependencies]
1313
thiserror = "1.0"

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.10"
11+
version = "0.3.11"
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.9", path = "../decoder", features = [
18+
defmt-decoder = { version = "=0.3.10", 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.9", path = "../decoder", features = [
11+
defmt-decoder = { version = "=0.3.10", path = "../decoder", features = [
1212
"unstable",
1313
] }

0 commit comments

Comments
 (0)