diff --git a/.changes/armv7-unknown-linux-gnueabihf-compatibility.md b/.changes/armv7-unknown-linux-gnueabihf-compatibility.md deleted file mode 100644 index 47b682035..000000000 --- a/.changes/armv7-unknown-linux-gnueabihf-compatibility.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"iota-stronghold": patch -"stronghold-engine": patch -"stronghold-runtime": patch ---- - -Fixed compilation for armv7-unknown-linux-gnueabihf target. \ No newline at end of file diff --git a/.changes/runner_api.md b/.changes/runner_api.md deleted file mode 100644 index 9be3b854b..000000000 --- a/.changes/runner_api.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -"iota-stronghold": minor -"stronghold-runtime": patch ---- - -Expose the runner API to allow for 3rd party procedures. - -Change libsodium-sys to libsodium-sys-stable due to depreciation of the previous library. diff --git a/client/CHANGELOG.md b/client/CHANGELOG.md index a704c2cf2..5cd62c4d0 100644 --- a/client/CHANGELOG.md +++ b/client/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## \[2.1.0] + +- [`4ccc99fa`](https://www.github.com/iotaledger/stronghold.rs/commit/4ccc99faec7000cfaefa4feab3a26d52435c3cd6) Fixed compilation for armv7-unknown-linux-gnueabihf target. +- [`49f6fb4b`](https://www.github.com/iotaledger/stronghold.rs/commit/49f6fb4b213423a07a76a8c147a1ff97baddfaa0) Expose the runner API to allow for 3rd party procedures. + + Change libsodium-sys to libsodium-sys-stable due to depreciation of the previous library. + +### Dependencies + +- Upgraded to `stronghold-engine@2.0.1` +- Upgraded to `stronghold-runtime@2.0.1` + ## \[2.0.0] - [`b9ce406a`](https://www.github.com/iotaledger/stronghold.rs/commit/b9ce406a1a3396a7c8cc7cca42f2bb5c0768dde9)([#495](https://www.github.com/iotaledger/stronghold.rs/pull/495)) Stable release of 2.0. diff --git a/client/Cargo.toml b/client/Cargo.toml index 32954ebd3..eaaecc0ba 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "iota_stronghold" -version = "2.0.0" +version = "2.1.0" edition = "2021" license = "Apache-2.0" readme = "README.md" diff --git a/engine/CHANGELOG.md b/engine/CHANGELOG.md index adbb6290c..c96bad121 100644 --- a/engine/CHANGELOG.md +++ b/engine/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## \[2.0.1] + +- [`4ccc99fa`](https://www.github.com/iotaledger/stronghold.rs/commit/4ccc99faec7000cfaefa4feab3a26d52435c3cd6) Fixed compilation for armv7-unknown-linux-gnueabihf target. + +### Dependencies + +- Upgraded to `stronghold-runtime@2.0.1` + ## \[2.0.0] - [`b9ce406a`](https://www.github.com/iotaledger/stronghold.rs/commit/b9ce406a1a3396a7c8cc7cca42f2bb5c0768dde9)([#495](https://www.github.com/iotaledger/stronghold.rs/pull/495)) Stable release of 2.0. diff --git a/engine/Cargo.toml b/engine/Cargo.toml index 932223f50..c2d85029a 100644 --- a/engine/Cargo.toml +++ b/engine/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stronghold_engine" -version = "2.0.0" +version = "2.0.1" authors = [ "IOTA Stiftung", "tensorprogramming " @@ -26,7 +26,7 @@ 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", path = "runtime" } +stronghold-runtime = { version = "2.0.1", path = "runtime" } digest = { version = "0.10.1", optional = true, default-features = false } iota-crypto = { version = "0.23", features = [ "age", diff --git a/engine/runtime/CHANGELOG.md b/engine/runtime/CHANGELOG.md index b6fbaa7ae..6b8677465 100644 --- a/engine/runtime/CHANGELOG.md +++ b/engine/runtime/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## \[2.0.1] + +- [`4ccc99fa`](https://www.github.com/iotaledger/stronghold.rs/commit/4ccc99faec7000cfaefa4feab3a26d52435c3cd6) Fixed compilation for armv7-unknown-linux-gnueabihf target. +- [`49f6fb4b`](https://www.github.com/iotaledger/stronghold.rs/commit/49f6fb4b213423a07a76a8c147a1ff97baddfaa0) Expose the runner API to allow for 3rd party procedures. + + Change libsodium-sys to libsodium-sys-stable due to depreciation of the previous library. + ## \[2.0.0] - [`b9ce406a`](https://www.github.com/iotaledger/stronghold.rs/commit/b9ce406a1a3396a7c8cc7cca42f2bb5c0768dde9)([#495](https://www.github.com/iotaledger/stronghold.rs/pull/495)) Stable release of 2.0. diff --git a/engine/runtime/Cargo.toml b/engine/runtime/Cargo.toml index 2cc76e2f1..3981f96a8 100644 --- a/engine/runtime/Cargo.toml +++ b/engine/runtime/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "stronghold-runtime" -version = "2.0.0" -authors = ["IOTA Stiftung", "Alexandre Dang