-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #502 from iotaledger/release/version-updates
Apply Version Updates From Current Changes
- Loading branch information
Showing
8 changed files
with
38 additions
and
31 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,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 `[email protected]` | ||
- Upgraded to `[email protected]` | ||
|
||
## \[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. | ||
|
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,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 `[email protected]` | ||
|
||
## \[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. | ||
|
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" | ||
version = "2.0.1" | ||
authors = [ | ||
"IOTA Stiftung", | ||
"tensorprogramming <[email protected]>" | ||
|
@@ -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", | ||
|
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,43 +1,38 @@ | ||
[package] | ||
name = "stronghold-runtime" | ||
version = "2.0.0" | ||
authors = ["IOTA Stiftung", "Alexandre Dang <[email protected]"] | ||
version = "2.0.1" | ||
authors = [ "IOTA Stiftung", "Alexandre Dang <[email protected]" ] | ||
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] | ||
|