Skip to content

Commit

Permalink
publish 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
al8n committed Sep 30, 2023
1 parent ae05dc8 commit 7404ce9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}

- name: test all features
run: cargo test --features sync,tokio-async,std-async,smol-async
run: cargo test --all-features

coverage:
name: cargo tarpaulin
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "fs4"
# NB: When modifying, also modify html_root_url in lib.rs
version = "0.7.0-alpha.1"
version = "0.7.0"
authors = ["Dan Burkert <[email protected]>", "Al Liu <[email protected]>"]
license = "MIT/Apache-2.0"
repository = "https://github.com/al8n/fs4-rs"
Expand Down
2 changes: 1 addition & 1 deletion src/windows.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ macro_rules! lock_impl {
};
}

#[cfg(any(feature = "smol-async", feature = "std-async", feature = "tokio-async"))]
#[cfg(any(feature = "smol", feature = "async-std", feature = "tokio"))]
pub(crate) mod async_impl;
#[cfg(feature = "sync")]
pub(crate) mod sync_impl;
Expand Down

0 comments on commit 7404ce9

Please sign in to comment.