Skip to content

Commit

Permalink
Merge pull request #36 from nervosnetwork/release/v0.8.1
Browse files Browse the repository at this point in the history
chore: bump v0.8.1
  • Loading branch information
zhangsoledad authored Sep 6, 2023
2 parents d888281 + 237c3af commit 856aba7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "faster-hex"
version = "0.8.0"
version = "0.8.1"
authors = ["zhangsoledad <787953403@qq.com>"]
edition = "2018"
keywords = ["simd", "hex", "no-std"]
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,8 @@ mod tests {
Vectorization::AVX2 => assert!(is_x86_feature_detected!("avx2")),
Vectorization::SSE41 => assert!(is_x86_feature_detected!("sse4.1")),
Vectorization::None => assert!(
!cfg!(target_feature = "sse") ||
!is_x86_feature_detected!("avx2") && !is_x86_feature_detected!("sse4.1")
!cfg!(target_feature = "sse")
|| !is_x86_feature_detected!("avx2") && !is_x86_feature_detected!("sse4.1")
),
}
}
Expand Down

0 comments on commit 856aba7

Please sign in to comment.