Skip to content

Commit

Permalink
Merge #511
Browse files Browse the repository at this point in the history
511: `defmt 0.2.3`, `defmt-macros 0.2.3`, `defmt-parser 0.2.2`, `defmt-decoder 0.2.2`, `defmt-print 0.2.2` r=Urhengulas a=Urhengulas



Co-authored-by: Johann Hemmann <[email protected]>
  • Loading branch information
bors[bot] and Urhengulas authored Jun 17, 2021
2 parents 411fc5f + ed5e0a1 commit 2ecfbde
Show file tree
Hide file tree
Showing 7 changed files with 42 additions and 19 deletions.
25 changes: 24 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,28 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [v0.2.3] - 2021-06-17

- [#488] Structure `impl Format`s into multiple files
- [#496] Bump build-dep `semver` to `1.0`
- [#497] `macros`: match unused vars if logging is disabled
- [#489] Structure lib
- [#499] Illustrate structure of the defmt crates
- [#500] book: fix leftover old formatting syntax; typos
- [#503] Add alternate hint ('#')
- [#509] `impl Format for NonZero*`
- [#510] `CI`: Don't install MacOS dependency which is included by default

[#488]: https://github.com/knurling-rs/defmt/pull/488
[#496]: https://github.com/knurling-rs/defmt/pull/496
[#497]: https://github.com/knurling-rs/defmt/pull/497
[#489]: https://github.com/knurling-rs/defmt/pull/489
[#499]: https://github.com/knurling-rs/defmt/pull/499
[#500]: https://github.com/knurling-rs/defmt/pull/500
[#503]: https://github.com/knurling-rs/defmt/pull/503
[#509]: https://github.com/knurling-rs/defmt/pull/509
[#510]: https://github.com/knurling-rs/defmt/pull/510

## [v0.2.2] - 2021-05-20

- [#446] Add usage examples for `Debug2Format`, `Display2Format`
Expand Down Expand Up @@ -239,7 +261,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

Initial release

[Unreleased]: https://github.com/knurling-rs/defmt/compare/defmt-v0.2.2...main
[Unreleased]: https://github.com/knurling-rs/defmt/compare/defmt-v0.2.3...main
[v0.2.3]: https://github.com/knurling-rs/defmt/compare/defmt-v0.2.2...defmt-v0.2.3
[v0.2.2]: https://github.com/knurling-rs/defmt/compare/defmt-v0.2.1...defmt-v0.2.2
[v0.2.1]: https://github.com/knurling-rs/defmt/compare/defmt-v0.2.0...defmt-v0.2.1
[v0.2.0]: https://github.com/knurling-rs/defmt/compare/defmt-v0.1.3...defmt-v0.2.0
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ name = "defmt"
readme = "README.md"
repository = "https://github.com/knurling-rs/defmt"
homepage = "https://knurling.ferrous-systems.com/"
version = "0.2.2"
version = "0.2.3"

[features]
alloc = []
Expand All @@ -19,10 +19,10 @@ alloc = []
unstable-test = ["defmt-macros/unstable-test"]

[dependencies]
defmt-macros = { path = "macros", version = "0.2.1" }
defmt-macros = { path = "macros", version = "0.2.2" }

[dev-dependencies]
rustc_version = "0.3.3"
rustc_version = "0.4"
trybuild = "1.0.42"

[workspace]
Expand Down
12 changes: 6 additions & 6 deletions decoder/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ license = "MIT OR Apache-2.0"
name = "defmt-decoder"
readme = "../README.md"
repository = "https://github.com/knurling-rs/defmt"
version = "0.2.1"
version = "0.2.2"

[dependencies]
defmt-parser = { path = "../parser", features = ["unstable"], version = "=0.2.1" }
defmt-parser = { path = "../parser", features = ["unstable"], version = "=0.2.2" }
byteorder = "1"
colored = "2.0.0"
leb128 = "0.2.4"
Expand All @@ -23,20 +23,20 @@ difference = "2.0.0"
log = { version = "0.4.14", features = ["std"] }

# elf2table
anyhow = "1.0.40"
gimli = "0.23.0"
anyhow = "1.0"
gimli = "0.23"
serde = { version = "1", features = ["derive"] }
serde_json = "1"

# elf2table
[dependencies.object]
version = "0.23.0"
version = "0.23"
default-features = false
features = ["read_core", "elf", "std"]


[build-dependencies]
semver = "0.11.0"
semver = "1.0"

[features]
# WARNING: API and wire format subject to change.
Expand Down
6 changes: 3 additions & 3 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.2.2"
version = "0.2.3"

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

[dependencies]
defmt-parser = { path = "../parser", features = ["unstable"], version = "=0.2.1" }
defmt-parser = { path = "../parser", features = ["unstable"], version = "=0.2.2" }
proc-macro2 = "1.0.27"
quote = "1.0.9"
syn = { version = "1.0.72", features = ["full"] }
syn = { version = "1.0", features = ["full"] }
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.2.1"
version = "0.2.2"

[features]
unstable = []
Expand Down
6 changes: 3 additions & 3 deletions print/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ license = "MIT OR Apache-2.0"
name = "defmt-print"
readme = "README.md"
repository = "https://github.com/knurling-rs/defmt"
version = "0.2.1"
version = "0.2.2"

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

[dependencies]
anyhow = "1.0.40"
defmt-decoder = { path = "../decoder", features = ["unstable"], version = "=0.2.1" }
anyhow = "1.0"
defmt-decoder = { path = "../decoder", features = ["unstable"], version = "=0.2.2" }
log = "0.4.14"
structopt = "0.3.21"
4 changes: 2 additions & 2 deletions qemu-run/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ publish = false
version = "0.2.0"

[dependencies]
anyhow = "1.0.40"
defmt-decoder = { path = "../decoder", features = ["unstable"], version = "=0.2.1" }
anyhow = "1.0"
defmt-decoder = { path = "../decoder", features = ["unstable"], version = "=0.2.2" }

0 comments on commit 2ecfbde

Please sign in to comment.