Skip to content

Commit

Permalink
Merge pull request #502 from iotaledger/release/version-updates
Browse files Browse the repository at this point in the history
Apply Version Updates From Current Changes
  • Loading branch information
semenov-vladyslav committed May 13, 2024
2 parents 5f105ee + 4c35370 commit f7a16b0
Show file tree
Hide file tree
Showing 8 changed files with 38 additions and 31 deletions.
7 changes: 0 additions & 7 deletions .changes/armv7-unknown-linux-gnueabihf-compatibility.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changes/runner_api.md

This file was deleted.

12 changes: 12 additions & 0 deletions client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
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"
version = "2.1.0"
edition = "2021"
license = "Apache-2.0"
readme = "README.md"
Expand Down
8 changes: 8 additions & 0 deletions engine/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
4 changes: 2 additions & 2 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"
version = "2.0.1"
authors = [
"IOTA Stiftung",
"tensorprogramming <tensordeveloper@gmail.com>"
Expand All @@ -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",
Expand Down
7 changes: 7 additions & 0 deletions engine/runtime/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
21 changes: 8 additions & 13 deletions engine/runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,43 +1,38 @@
[package]
name = "stronghold-runtime"
version = "2.0.0"
authors = ["IOTA Stiftung", "Alexandre Dang <alexandre.dang@iota.org"]
version = "2.0.1"
authors = [ "IOTA Stiftung", "Alexandre Dang <alexandre.dang@iota.org" ]
edition = "2021"
readme = "README.md"
license = "Apache-2.0"
description = "Data structures for memory protection at runtime"
repository = "https://github.com/iotaledger/stronghold.rs"
homepage = "https://wiki.iota.org/stronghold.rs/getting_started"
documentation = "https://wiki.iota.org/stronghold.rs/getting_started"
keywords = ["iota", "stronghold", "security"]
categories = ["security"]
keywords = [ "iota", "stronghold", "security" ]
categories = [ "security" ]

[lib]
name = "runtime"

[dependencies]
libc = { version = "0.2" }
log = { version = "0.4.17" }
zeroize = { version = "1.5.7", default-features = false, features = [
"alloc",
"zeroize_derive",
] }
zeroize = { version = "1.5.7", default-features = false, features = [ "alloc", "zeroize_derive" ] }
libsodium-sys-stable = { version = "1.20" }
serde = { version = "1.0", features = ["derive"] }
serde = { version = "1.0", features = [ "derive" ] }
random = { version = "0.8.4", package = "rand" }
dirs = { version = "4.0.0" }
thiserror = { version = "1.0" }
iota-crypto = { version = "0.23", default-features = false, features = [
"blake2b",
] }
iota-crypto = { version = "0.23", default-features = false, features = [ "blake2b" ] }

[target."cfg(windows)".dependencies]
windows = { version = "0.36.0", features = [
"Win32_System_Memory",
"Win32_System_SystemInformation",
"Win32_System_Diagnostics_Debug",
"Win32_Foundation",
"Win32_Security",
"Win32_Security"
] }

[target."cfg(any(target_os = \"linux\", target_os = \"macos\"))".dependencies]
Expand Down

0 comments on commit f7a16b0

Please sign in to comment.