Releases: probe-rs/embedded-test
Releases · probe-rs/embedded-test
v0.6.0
What's Changed
Added
#[tests(default_timeout = <u32>)]
to configure a suite-wide default timeout.#[tests(setup = <expr>)]
to configure a suite-wide (log) setup function (e.g.rtt_target::rtt_init_log()
).
Removed
- Breaking: Removed Features
init-log
andinit-rtt
to no longer depend onrtt-target
/rtt-log
.
Changed
- Breaking: Bump embassy-excecutor to 0.7.0
Full Changelog: v0.5.0...v0.6.0
v0.5.0
v0.4.0
What's Changed
- Use released semihosting by @SergioGasquez in #27
- Configurable executor by @bjoernQ in #30
- Release 0.4.0: Switch to probe-rs 0.24 🥳 by @t-moe in #32
New Contributors
- @SergioGasquez made their first contribution in #27
- @bjoernQ made their first contribution in #30
Full Changelog: v0.3.0...v0.4.0
v0.3.0
v0.2.3
Added
- Show improved diagnostic when no executor feature is enabled on the embassy-executor crate.
- Calculate the test list buffer size at compile time to avoid a too small buffer.
Fixed
- Macro produced invalid rust code when there was no #[init] function present.