Skip to content

Commit

Permalink
apply version updates (#490)
Browse files Browse the repository at this point in the history
Co-authored-by: thibault-martinez <thibault-martinez@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and thibault-martinez committed Jul 11, 2023
1 parent f961974 commit 4231643
Show file tree
Hide file tree
Showing 7 changed files with 40 additions and 5 deletions.
1 change: 1 addition & 0 deletions .changes/pre.json
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
10 changes: 10 additions & 0 deletions client/CHANGELOG.md
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 `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.
Expand Down
2 changes: 1 addition & 1 deletion client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
9 changes: 9 additions & 0 deletions engine/CHANGELOG.md
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 `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.
Expand Down
16 changes: 13 additions & 3 deletions engine/Cargo.toml
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 <tensordeveloper@gmail.com>"
Expand All @@ -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"
Expand Down
5 changes: 5 additions & 0 deletions engine/runtime/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion engine/runtime/Cargo.toml
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 <alexandre.dang@iota.org" ]
edition = "2021"
readme = "README.md"
Expand Down

0 comments on commit 4231643

Please sign in to comment.