From 423164347697203a1f81f4f289723c4ee191d1ed Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 11 Jul 2023 11:23:17 +0200 Subject: [PATCH] apply version updates (#490) Co-authored-by: thibault-martinez --- .changes/pre.json | 1 + client/CHANGELOG.md | 10 ++++++++++ client/Cargo.toml | 2 +- engine/CHANGELOG.md | 9 +++++++++ engine/Cargo.toml | 16 +++++++++++++--- engine/runtime/CHANGELOG.md | 5 +++++ engine/runtime/Cargo.toml | 2 +- 7 files changed, 40 insertions(+), 5 deletions(-) diff --git a/.changes/pre.json b/.changes/pre.json index aba7b5b27..34617ac4d 100644 --- a/.changes/pre.json +++ b/.changes/pre.json @@ -1,6 +1,7 @@ { "tag": "rc", "changes": [ + ".changes/bump-crypto-0.22.1.md", ".changes/secp256k1.md", ".changes/snapshot-migration-v3age-zeroize.md", ".changes/snapshot_encrypt_work_factor.md" diff --git a/client/CHANGELOG.md b/client/CHANGELOG.md index 9a493d279..3af49616f 100644 --- a/client/CHANGELOG.md +++ b/client/CHANGELOG.md @@ -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 `stronghold-engine@2.0.0-rc.1` +- Upgraded to `stronghold-runtime@2.0.0-rc.1` + ## \[2.0.0-rc.0] - [`12ce12fe`](https://www.github.com/iotaledger/stronghold.rs/commit/12ce12fe3d28456eabacce6e608e81c3b4e0ec20) Secp256k1 ECDSA + SLIP-10 support added. diff --git a/client/Cargo.toml b/client/Cargo.toml index 5114e2dae..abf41af3d 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "iota_stronghold" -version = "2.0.0-rc.0" +version = "2.0.0-rc.1" edition = "2021" license = "Apache-2.0" readme = "README.md" diff --git a/engine/CHANGELOG.md b/engine/CHANGELOG.md index c6644f88f..1b507df5a 100644 --- a/engine/CHANGELOG.md +++ b/engine/CHANGELOG.md @@ -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 `stronghold-runtime@2.0.0-rc.1` + ## \[2.0.0-rc.0] - [`12ce12fe`](https://www.github.com/iotaledger/stronghold.rs/commit/12ce12fe3d28456eabacce6e608e81c3b4e0ec20) Secp256k1 ECDSA + SLIP-10 support added. diff --git a/engine/Cargo.toml b/engine/Cargo.toml index ff6bb14c6..a234224c6 100644 --- a/engine/Cargo.toml +++ b/engine/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stronghold_engine" -version = "2.0.0-rc.0" +version = "2.0.0-rc.1" authors = [ "IOTA Stiftung", "tensorprogramming " @@ -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" diff --git a/engine/runtime/CHANGELOG.md b/engine/runtime/CHANGELOG.md index e476b8baa..2e658dd1a 100644 --- a/engine/runtime/CHANGELOG.md +++ b/engine/runtime/CHANGELOG.md @@ -1,5 +1,10 @@ # 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. + ## \[2.0.0-rc.0] - [`12ce12fe`](https://www.github.com/iotaledger/stronghold.rs/commit/12ce12fe3d28456eabacce6e608e81c3b4e0ec20) Secp256k1 ECDSA + SLIP-10 support added. diff --git a/engine/runtime/Cargo.toml b/engine/runtime/Cargo.toml index 84b749b63..e46247528 100644 --- a/engine/runtime/Cargo.toml +++ b/engine/runtime/Cargo.toml @@ -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