Skip to content

Commit 362aa25

Browse files
committed
Prepare for release. check std exa in CI
1 parent 23b2d0b commit 362aa25

File tree

10 files changed

+30
-21
lines changed

10 files changed

+30
-21
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,16 @@ jobs:
3737

3838
target_and_example: [
3939
# RISC-V devices:
40-
{ target: "riscv32imac-unknown-none-elf", example: "examples/esp32c6/Cargo.toml" },
40+
{ target: "riscv32imac-unknown-none-elf", example: "examples/esp32c6/Cargo.toml", features: "default" },
4141
# arm7 devices:
42-
{ target: "thumbv7em-none-eabihf", example: "examples/stm32f767/Cargo.toml" },
42+
{ target: "thumbv7em-none-eabihf", example: "examples/stm32f767/Cargo.toml", features: "default" },
43+
# std:
44+
{ target: "x86_64-unknown-linux-gnu", example: "examples/std/Cargo.toml", features: "std" },
4345
]
4446

47+
exclude:
48+
- log_kind: defmt
49+
target_and_example: { target: "x86_64-unknown-linux-gnu", example: "examples/std/Cargo.toml", features: "std" }
4550

4651
runs-on: ubuntu-latest #${{ matrix.os }}
4752

@@ -63,7 +68,7 @@ jobs:
6368
uses: Swatinem/[email protected]
6469

6570
- name: Run cargo check for embedded-test
66-
run: cargo check --target ${{ matrix.target_and_example.target}} --features ${{matrix.log_kind}} --locked
71+
run: cargo check --target ${{ matrix.target_and_example.target}} --no-default-features --features ${{matrix.log_kind}} ${{matrix.target_and_example.features}} --locked
6772

6873
- name: Run cargo check for example
6974
run: cargo check --target ${{ matrix.target_and_example.target}} --no-default-features --features ${{matrix.log_kind}} --manifest-path ${{matrix.target_and_example.example}} --locked --all-targets

CHANGELOG.md

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

88
## Unreleased
99

10+
## [0.7.0-alpha.2]
11+
1012
### Changed
1113

12-
- Updated embassy-executor to 0.8
14+
- Breaking: Updated embassy-executor to 0.8
1315

1416
## [0.7.0-alpha.1]
1517

@@ -129,7 +131,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
129131

130132
Initial release on crates.io
131133

132-
[unreleased]: https://github.com/probe-rs/embedded-test/compare/v0.7.0-alpha.1...master
134+
[unreleased]: https://github.com/probe-rs/embedded-test/compare/v0.7.0-alpha.2...master
135+
136+
[0.7.0-alpha.2]: https://github.com/probe-rs/embedded-test/compare/v0.7.0-alpha.1...v0.7.0-alpha.2
133137

134138
[0.7.0-alpha.1]: https://github.com/probe-rs/embedded-test/compare/v0.7.0-alpha.0...v0.7.0-alpha.1
135139

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "embedded-test"
3-
version = "0.7.0-alpha.1"
3+
version = "0.7.0-alpha.2"
44
edition = "2021"
55
repository = "https://github.com/probe-rs/embedded-test"
66
license = "MIT OR Apache-2.0"

examples/esp32c6/Cargo.lock

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

examples/std/Cargo.lock

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

examples/stm32f767/Cargo.lock

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

linker-script/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-linker-script"
33
description = "Linker script for embedded-test"
4-
version = "0.1.0-alpha.1"
4+
version = "0.1.0-alpha.2"
55
edition = "2024"
66
repository = "https://github.com/probe-rs/embedded-test"
77
license = "MIT OR Apache-2.0"

macros/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.7.0-alpha.1"
4+
version = "0.7.0-alpha.2"
55
edition = "2021"
66
repository = "https://github.com/probe-rs/embedded-test"
77
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)