Skip to content

Commit

Permalink
apply version updates (#159)
Browse files Browse the repository at this point in the history
Co-authored-by: thibault-martinez <[email protected]>
  • Loading branch information
github-actions[bot] and thibault-martinez authored Sep 5, 2022
1 parent 54ddf21 commit 44daa76
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 12 deletions.
5 changes: 0 additions & 5 deletions .changes/cpufeatures-advisory.md

This file was deleted.

5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## \[0.14.1]

- Forces the use of `[email protected]` since all previous `0.2` versions have been yanked.
- [54ddf21](https://www.github.com/iotaledger/crypto.rs/commit/54ddf215954aff72701d50997fe73068f4e480cb) Address `cpufeatures` being yanked ([#158](https://www.github.com/iotaledger/crypto.rs/pull/158)) on 2022-09-05

## \[0.14.0]

- Add aead_encrypt and aead_decrypt convenience functions
Expand Down
10 changes: 3 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "iota-crypto"
version = "0.14.0"
version = "0.14.1"
license = "Apache-2.0"
authors = [
"Gustav Behm <[email protected]>",
Expand Down Expand Up @@ -36,7 +36,7 @@ aes-cbc = [
aes-kw = [ "aes-crate" ]
aes-gcm = [ "aes-gcm-crate", "cipher" ]
chacha = [ "chacha20poly1305", "cipher", "dep:cpufeatures" ]
ed25519 = [ "ed25519-zebra", "dep:cpufeatures" ]
ed25519 = [ "ed25519-zebra", "dep:cpufeatures" ]
x25519 = [ "x25519-dalek", "curve25519-dalek" ]
random = [ "getrandom" ]
aes = [ "aes-cbc", "aes-gcm", "aes-kw", "dep:cpufeatures" ]
Expand All @@ -61,7 +61,7 @@ wots_deprecated_do_not_use = [
"rand",
"bee-common-derive"
]
sha = [ "sha2", "digest", "dep:cpufeatures" ]
sha = [ "sha2", "digest", "dep:cpufeatures" ]
hmac = [ "hmac_" ]
pbkdf = [ "pbkdf2" ]
bip39 = [ "pbkdf", "hmac", "sha", "pbkdf", "unicode-normalization" ]
Expand Down Expand Up @@ -97,10 +97,6 @@ unicode-normalization = { version = "0.1", optional = true, default-features = f
curve25519-dalek = { version = "3", optional = true, default-features = false, features = [ "u64_backend" ] }
x25519-dalek = { version = "1.1", optional = true, default-features = false, features = [ "u64_backend" ] }
zeroize = { version = "1.3", optional = true, default-features = false, features = [ "zeroize_derive" ] }

# Lower versions of `cpufeatures` have been yanked.
# This addition is temporary to force the use of this specific version.
# It should be properly handled by upgrading the other dependencies.
cpufeatures = { version = "0.2.5", optional = true, default-features = false }

[dev-dependencies]
Expand Down

0 comments on commit 44daa76

Please sign in to comment.