Skip to content

Commit 82b1a60

Browse files
authored
Merge pull request #42 from probe-rs/embassy
Update embassy-executor
2 parents 784f62c + e2c4a56 commit 82b1a60

File tree

4 files changed

+15
-13
lines changed

4 files changed

+15
-13
lines changed

CHANGELOG.md

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

1212
### Changed
1313

14+
- Breaking: Bump embassy-excecutor to 0.6.1
15+
1416
### Fixed
1517

1618
### Removed

Cargo.lock

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

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "embedded-test"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
edition = "2021"
55
repository = "https://github.com/probe-rs/embedded-test"
66
license = "MIT OR Apache-2.0"
@@ -20,7 +20,7 @@ rtt-target = { version = "0.5.0", optional = true }
2020
rtt-log = { version = "0.3.0", optional = true }
2121
defmt = { version = "0.3.8", optional = true }
2222
log = { version = "0.4.20", optional = true }
23-
embassy-executor = { version = ">=0.5.0, <0.7.0", optional = true, default-features = false }
23+
embassy-executor = { version = "0.6.1", optional = true, default-features = false }
2424

2525

2626
[features]

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Add the following to your `Cargo.toml`:
3636

3737
```toml
3838
[dev-dependencies]
39-
embedded-test = { version = "0.4.0", features = ["init-log"] }
39+
embedded-test = { version = "0.5.0", features = ["init-log"] }
4040

4141

4242
[[test]]
@@ -46,7 +46,7 @@ harness = false
4646

4747
Install the runner on your system:
4848

49-
```bash
49+
```bash
5050
cargo install probe-rs-tools
5151
```
5252

@@ -73,13 +73,13 @@ the [FAQ and common Errors](https://github.com/probe-rs/embedded-test/wiki/FAQ-a
7373

7474
## Example Test
7575

76-
[Example repo](https://github.com/probe-rs/embedded-test-example)
77-
[More Detailed Cargo.toml](https://github.com/probe-rs/embedded-test-example/blob/master/Cargo.toml)
76+
[Example repo](https://github.com/probe-rs/embedded-test-example)
77+
[More Detailed Cargo.toml](https://github.com/probe-rs/embedded-test-example/blob/master/Cargo.toml)
7878
[Async Test Example](https://github.com/probe-rs/embedded-test-example/blob/master/tests/async_test.rs)
7979

8080
Example for `tests/example_test.rs`
8181

82-
```rust
82+
```rust
8383
#![no_std]
8484
#![no_main]
8585

0 commit comments

Comments
 (0)