Skip to content

Commit

Permalink
Release 0.27.0
Browse files Browse the repository at this point in the history
Pass `--all-features` on CI and docs.rs
  • Loading branch information
N3xed committed Dec 7, 2021
1 parent 4c6e94f commit dd7276f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ jobs:
- name: Build | Fmt Check
run: cargo fmt -- --check
- name: Build | Clippy
run: cargo clippy --no-deps --workspace -- -Dwarnings
run: cargo clippy --no-deps --workspace --all-features -- -Dwarnings
- name: Build | Compile
run: cargo build --workspace
run: cargo build --workspace --all-features
5 changes: 4 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = ["cargo-pio", "ldproxy"]

[package]
name = "embuild"
version = "0.26.0"
version = "0.27.0"
authors = ["Ivan Markov <[email protected]>", "Dominik Gschwind <[email protected]>"]
edition = "2018"
categories = ["embedded", "development-tools::build-utils"]
Expand All @@ -13,6 +13,9 @@ repository = "https://github.com/ivmarkov/embuild"
license = "MIT OR Apache-2.0"
readme = "README.md"

[package.metadata.docs.rs]
all-features = true

[features]
default = []

Expand Down

0 comments on commit dd7276f

Please sign in to comment.