Skip to content

Commit b764a88

Browse files
authored
Merge pull request #42 from rursprung/dependency-update
update dependencies (primary goal: `defmt` v1.0)
2 parents c9b10d2 + b467921 commit b764a88

File tree

4 files changed

+76
-51
lines changed

4 files changed

+76
-51
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
<!-- next-header -->
88
## [Unreleased] - ReleaseDate
9+
### Changed
10+
11+
* Updated to `defmt` 1.0 (non-breaking change, backwards compatible with 0.3 through semver trick)
912

1013
## [1.0.0] - 2024-10-13
1114
### Added

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ keywords = ["adafruit", "bluefruit", "bluetooth", "protocol"]
1111
license = "MIT OR Apache-2.0"
1212

1313
[dependencies]
14-
defmt = { version = "0.3", optional = true }
14+
defmt = { version = "1.0", optional = true }
1515

1616
rgb = { version = "0.8", optional = true }
1717
serde = { version = "1.0", features = ["derive"], optional = true }

examples/stm32f4-event-printer/Cargo.lock

Lines changed: 69 additions & 47 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/stm32f4-event-printer/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ license = "MIT OR Apache-2.0"
77
[dependencies]
88
cortex-m = { version = "0.7", features = ["critical-section-single-core"]}
99
cortex-m-rtic = "1.1.4"
10-
panic-probe = { version = "0.3", features = ["print-defmt"] }
10+
panic-probe = { version = "1.0", features = ["print-defmt"] }
1111

1212
stm32f4xx-hal = { version = "0.19", features = ["stm32f401", "rtic", "rtic-monotonic"] }
1313

1414
fugit = "0.3"
1515

16-
defmt = "0.3.6"
17-
defmt-rtt = "0.4"
16+
defmt = "1.0"
17+
defmt-rtt = "1.0"
1818

1919
# use `adafruit-bluefruit-protocol = "0.1"` in reality; path used here to ensure that the example always compiles against the latest master
2020
adafruit-bluefruit-protocol = { path = "../..", features = ["defmt"] }

0 commit comments

Comments
 (0)