Skip to content

Commit

Permalink
Merge #641
Browse files Browse the repository at this point in the history
641: Release v0.3.1 r=Urhengulas a=jonathanpallant

Updates all crates to v0.3.1.

The alternative is to only update the changed crates:

* defmt-macros
* defmt-decoder
* defmt-rtt


Co-authored-by: Jonathan Pallant (Ferrous Systems) <jonathan.pallant@ferrous-systems.com>
  • Loading branch information
bors[bot] and jonathanpallant authored Nov 26, 2021
2 parents d634d06 + 6286397 commit a8f17ee
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 9 deletions.
15 changes: 12 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,19 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

- [#]
- None

## [v0.3.1] - 2021-11-26

- [#634]: update ELF parsing dependencies
- [#633]: make RTT buffer size configurable
- [#630]: Add test instructions to README.md
- [#626]: Make errror message more meaningful in case of version-mismatch

[#634]: https://github.com/knurling-rs/defmt/pull/634
[#633]: https://github.com/knurling-rs/defmt/pull/633

[#630]: https://github.com/knurling-rs/defmt/pull/630
[#626]: https://github.com/knurling-rs/defmt/pull/626

## [v0.3.0] - 2021-11-09

Expand Down Expand Up @@ -430,7 +438,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

Initial release

[Unreleased]: https://github.com/knurling-rs/defmt/compare/defmt-v0.3.0...main
[Unreleased]: https://github.com/knurling-rs/defmt/compare/defmt-v0.3.1...main
[v0.3.1]: https://github.com/knurling-rs/defmt/compare/defmt-v0.3.0...defmt-v0.3.1
[v0.3.0]: https://github.com/knurling-rs/defmt/compare/defmt-v0.2.3...defmt-v0.3.0
[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
Expand Down
2 changes: 1 addition & 1 deletion decoder/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-decoder"
readme = "../README.md"
repository = "https://github.com/knurling-rs/defmt"
version = "0.3.0"
version = "0.3.1"

[dependencies]
defmt-parser = { path = "../parser", features = ["unstable"], version = "=0.3.0" }
Expand Down
2 changes: 1 addition & 1 deletion firmware/defmt-rtt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0"
name = "defmt-rtt"
readme = "README.md"
repository = "https://github.com/knurling-rs/defmt"
version = "0.3.0"
version = "0.3.1"

[dependencies]
cortex-m = "0.7"
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.0"
version = "0.3.1"

[lib]
proc-macro = true
Expand Down
4 changes: 2 additions & 2 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.3.0"
version = "0.3.1"

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

[dependencies]
anyhow = "1"
defmt-decoder = { path = "../decoder", features = ["unstable"], version = "=0.3.0" }
defmt-decoder = { path = "../decoder", features = ["unstable"], version = "=0.3.1" }
log = "0.4"
structopt = "0.3"
2 changes: 1 addition & 1 deletion qemu-run/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ version = "0.1.0"

[dependencies]
anyhow = "1"
defmt-decoder = { path = "../decoder", features = ["unstable"], version = "=0.3.0" }
defmt-decoder = { path = "../decoder", features = ["unstable"], version = "=0.3.1" }

0 comments on commit a8f17ee

Please sign in to comment.