Skip to content

Commit 47d60df

Browse files
committed
Update to 0.2
1 parent afacf5d commit 47d60df

File tree

4 files changed

+6
-14
lines changed

4 files changed

+6
-14
lines changed

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.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55
repository = "https://github.com/probe-rs/embedded-test"
66
license = "MIT OR Apache-2.0"
@@ -13,7 +13,7 @@ categories = ["embedded", "no-std", "development-tools::testing"]
1313
# Dependencies when this crate is used as library
1414
[dependencies]
1515
semihosting = { version ="0.1.4", features = ["args"] }
16-
embedded-test-macros = {path = "./macros" } # Required for now, but must be removed, once we want to release to crates.io
16+
embedded-test-macros = {version="0.2.0",path = "./macros" }
1717
defmt = { version = "0.3.5", optional = true }
1818
log = { version = "0.4.20", optional = true}
1919
serde = { version = "1.0.193", default-features = false, features = ["derive"] }

README.md

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,8 @@ Since the test runner (`probe-rs test`) is libtest compatible (using [libtest-mi
1616
![](./demo.gif)
1717

1818

19-
## WARNING: Pre-Alpha !!
20-
This project is in pre-alpha state:
21-
22-
TODOs:
23-
* [ ] Add test case timeout
24-
* [ ] Add support for global setup/teardown and pass state to test cases (like the init functions in defmt-test)
25-
* [ ] Add support for async test functions
26-
* [ ] Add support for should_error attribute
27-
* [ ] Add support for non-unit return types of tests
28-
19+
## WARNING
20+
This project is development state. Don't rely on it for anything important yet.
2921

3022
## Usage
3123

@@ -37,7 +29,7 @@ name = "example_test"
3729
harness = false
3830

3931
[dev-dependencies]
40-
embedded-test = {git= "https://github.com/probe-rs/embedded-test", features = ["log"]} # enable log or defmt to see some debug output
32+
embedded-test = {version="0.2.0", features = ["log"]} # enable log or defmt to see some debug output
4133
panic-probe = {git = "https://github.com/t-moe/defmt"} # the upstream create does not support riscv yet
4234
```
4335

demo.gif

-227 KB
Loading

macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "embedded-test-macros"
33
description = "proc-macros for the embedded-test crate"
4-
version = "0.1.0"
4+
version = "0.2.0"
55
edition = "2021"
66
repository = "https://github.com/probe-rs/embedded-test"
77
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)