Skip to content

Commit f7a16b0

Browse files
Merge pull request #502 from iotaledger/release/version-updates
Apply Version Updates From Current Changes
2 parents 5f105ee + 4c35370 commit f7a16b0

File tree

8 files changed

+38
-31
lines changed

8 files changed

+38
-31
lines changed

.changes/armv7-unknown-linux-gnueabihf-compatibility.md

-7
This file was deleted.

.changes/runner_api.md

-8
This file was deleted.

client/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## \[2.1.0]
4+
5+
- [`4ccc99fa`](https://www.github.com/iotaledger/stronghold.rs/commit/4ccc99faec7000cfaefa4feab3a26d52435c3cd6) Fixed compilation for armv7-unknown-linux-gnueabihf target.
6+
- [`49f6fb4b`](https://www.github.com/iotaledger/stronghold.rs/commit/49f6fb4b213423a07a76a8c147a1ff97baddfaa0) Expose the runner API to allow for 3rd party procedures.
7+
8+
Change libsodium-sys to libsodium-sys-stable due to depreciation of the previous library.
9+
10+
### Dependencies
11+
12+
- Upgraded to `[email protected]`
13+
- Upgraded to `[email protected]`
14+
315
## \[2.0.0]
416

517
- [`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.

client/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iota_stronghold"
3-
version = "2.0.0"
3+
version = "2.1.0"
44
edition = "2021"
55
license = "Apache-2.0"
66
readme = "README.md"

engine/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## \[2.0.1]
4+
5+
- [`4ccc99fa`](https://www.github.com/iotaledger/stronghold.rs/commit/4ccc99faec7000cfaefa4feab3a26d52435c3cd6) Fixed compilation for armv7-unknown-linux-gnueabihf target.
6+
7+
### Dependencies
8+
9+
- Upgraded to `[email protected]`
10+
311
## \[2.0.0]
412

513
- [`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.

engine/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "stronghold_engine"
3-
version = "2.0.0"
3+
version = "2.0.1"
44
authors = [
55
"IOTA Stiftung",
66
"tensorprogramming <[email protected]>"
@@ -26,7 +26,7 @@ paste = "1.0.1"
2626
once_cell = "1.4"
2727
zeroize = { version = "1.5.7", features = [ "zeroize_derive" ] }
2828
serde = { version = "1.0", features = [ "derive" ] }
29-
stronghold-runtime = { version = "2.0.0", path = "runtime" }
29+
stronghold-runtime = { version = "2.0.1", path = "runtime" }
3030
digest = { version = "0.10.1", optional = true, default-features = false }
3131
iota-crypto = { version = "0.23", features = [
3232
"age",

engine/runtime/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## \[2.0.1]
4+
5+
- [`4ccc99fa`](https://www.github.com/iotaledger/stronghold.rs/commit/4ccc99faec7000cfaefa4feab3a26d52435c3cd6) Fixed compilation for armv7-unknown-linux-gnueabihf target.
6+
- [`49f6fb4b`](https://www.github.com/iotaledger/stronghold.rs/commit/49f6fb4b213423a07a76a8c147a1ff97baddfaa0) Expose the runner API to allow for 3rd party procedures.
7+
8+
Change libsodium-sys to libsodium-sys-stable due to depreciation of the previous library.
9+
310
## \[2.0.0]
411

512
- [`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.

engine/runtime/Cargo.toml

+8-13
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,38 @@
11
[package]
22
name = "stronghold-runtime"
3-
version = "2.0.0"
4-
authors = ["IOTA Stiftung", "Alexandre Dang <[email protected]"]
3+
version = "2.0.1"
4+
authors = [ "IOTA Stiftung", "Alexandre Dang <[email protected]" ]
55
edition = "2021"
66
readme = "README.md"
77
license = "Apache-2.0"
88
description = "Data structures for memory protection at runtime"
99
repository = "https://github.com/iotaledger/stronghold.rs"
1010
homepage = "https://wiki.iota.org/stronghold.rs/getting_started"
1111
documentation = "https://wiki.iota.org/stronghold.rs/getting_started"
12-
keywords = ["iota", "stronghold", "security"]
13-
categories = ["security"]
12+
keywords = [ "iota", "stronghold", "security" ]
13+
categories = [ "security" ]
1414

1515
[lib]
1616
name = "runtime"
1717

1818
[dependencies]
1919
libc = { version = "0.2" }
2020
log = { version = "0.4.17" }
21-
zeroize = { version = "1.5.7", default-features = false, features = [
22-
"alloc",
23-
"zeroize_derive",
24-
] }
21+
zeroize = { version = "1.5.7", default-features = false, features = [ "alloc", "zeroize_derive" ] }
2522
libsodium-sys-stable = { version = "1.20" }
26-
serde = { version = "1.0", features = ["derive"] }
23+
serde = { version = "1.0", features = [ "derive" ] }
2724
random = { version = "0.8.4", package = "rand" }
2825
dirs = { version = "4.0.0" }
2926
thiserror = { version = "1.0" }
30-
iota-crypto = { version = "0.23", default-features = false, features = [
31-
"blake2b",
32-
] }
27+
iota-crypto = { version = "0.23", default-features = false, features = [ "blake2b" ] }
3328

3429
[target."cfg(windows)".dependencies]
3530
windows = { version = "0.36.0", features = [
3631
"Win32_System_Memory",
3732
"Win32_System_SystemInformation",
3833
"Win32_System_Diagnostics_Debug",
3934
"Win32_Foundation",
40-
"Win32_Security",
35+
"Win32_Security"
4136
] }
4237

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

0 commit comments

Comments
 (0)