-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: thibault-martinez <[email protected]>
- Loading branch information
1 parent
f961974
commit 4231643
Showing
7 changed files
with
40 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,15 @@ | ||
# Changelog | ||
|
||
## \[2.0.0-rc.1] | ||
|
||
- [`f9619747`](https://www.github.com/iotaledger/stronghold.rs/commit/f96197471cb894e1a5a08caa4e9393703e5b8d1b)([#489](https://www.github.com/iotaledger/stronghold.rs/pull/489)) Added support for Secp256k1 ECDSA with SHA256/Keccak256 variants. | ||
Bump `iota-crypto` version to 0.22.1. | ||
|
||
### Dependencies | ||
|
||
- Upgraded to `[email protected]` | ||
- Upgraded to `[email protected]` | ||
|
||
## \[2.0.0-rc.0] | ||
|
||
- [`12ce12fe`](https://www.github.com/iotaledger/stronghold.rs/commit/12ce12fe3d28456eabacce6e608e81c3b4e0ec20) Secp256k1 ECDSA + SLIP-10 support added. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,14 @@ | ||
# Changelog | ||
|
||
## \[2.0.0-rc.1] | ||
|
||
- [`f9619747`](https://www.github.com/iotaledger/stronghold.rs/commit/f96197471cb894e1a5a08caa4e9393703e5b8d1b)([#489](https://www.github.com/iotaledger/stronghold.rs/pull/489)) Added support for Secp256k1 ECDSA with SHA256/Keccak256 variants. | ||
Bump `iota-crypto` version to 0.22.1. | ||
|
||
### Dependencies | ||
|
||
- Upgraded to `[email protected]` | ||
|
||
## \[2.0.0-rc.0] | ||
|
||
- [`12ce12fe`](https://www.github.com/iotaledger/stronghold.rs/commit/12ce12fe3d28456eabacce6e608e81c3b4e0ec20) Secp256k1 ECDSA + SLIP-10 support added. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "stronghold_engine" | ||
version = "2.0.0-rc.0" | ||
version = "2.0.0-rc.1" | ||
authors = [ | ||
"IOTA Stiftung", | ||
"tensorprogramming <[email protected]>" | ||
|
@@ -26,9 +26,19 @@ paste = "1.0.1" | |
once_cell = "1.4" | ||
zeroize = { version = "1.5.7", features = [ "zeroize_derive" ] } | ||
serde = { version = "1.0", features = [ "derive" ] } | ||
stronghold-runtime = { version = "2.0.0-rc.0", path = "runtime" } | ||
stronghold-runtime = { version = "2.0.0-rc.1", path = "runtime" } | ||
digest = { version = "0.10.1", optional = true, default-features = false } | ||
iota-crypto = { version = "0.22.1", features = [ "age", "pbkdf2", "random", "chacha", "hmac", "sha", "x25519", "blake2b", "std" ], default-features = false } | ||
iota-crypto = { version = "0.22.1", features = [ | ||
"age", | ||
"pbkdf2", | ||
"random", | ||
"chacha", | ||
"hmac", | ||
"sha", | ||
"x25519", | ||
"blake2b", | ||
"std" | ||
], default-features = false } | ||
|
||
[dev-dependencies] | ||
tempfile = "3.1.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "stronghold-runtime" | ||
version = "2.0.0-rc.0" | ||
version = "2.0.0-rc.1" | ||
authors = [ "IOTA Stiftung", "Alexandre Dang <[email protected]" ] | ||
edition = "2021" | ||
readme = "README.md" | ||
|