Skip to content

Commit

Permalink
apply version updates
Browse files Browse the repository at this point in the history
  • Loading branch information
nothingismagick authored Jul 27, 2021
1 parent 1fa597b commit 3d6ff8b
Show file tree
Hide file tree
Showing 17 changed files with 89 additions and 54 deletions.
7 changes: 0 additions & 7 deletions .changes/comms-stop-listening.md

This file was deleted.

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

This file was deleted.

7 changes: 0 additions & 7 deletions .changes/fuzzer.md

This file was deleted.

9 changes: 9 additions & 0 deletions client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## \[0.5.0]

- Add method `stop_listening` to `Stronghold` interface.
Fix stop-listening in `SwarmTask` in communication.
- [6bd3111d](https://www.github.com/iotaledger/stronghold.rs/commit/6bd3111de9f70f13ec7d538a02d6a444df962f61) fix(comms): add / fix stop listening ([#222](https://www.github.com/iotaledger/stronghold.rs/pull/222)) on 2021-06-30
- Update inline Docs and README files to reflect the current state of the project.
- [fc95c271](https://www.github.com/iotaledger/stronghold.rs/commit/fc95c27128dedf8aa2d366776c22cb9c8e3f158a) add changes. on 2021-07-01
- [eafca12a](https://www.github.com/iotaledger/stronghold.rs/commit/eafca12ad915166d8039df6ad050bb1c65cbe248) fix changes format. on 2021-07-01

## \[0.4.1]

- Merged Store, Vault and Snapshot into a single crate called Stronghold-Engine.
Expand Down
48 changes: 24 additions & 24 deletions client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "iota_stronghold"
version = "0.4.1"
version = "0.5.0"
authors = [
"IOTA Stiftung",
"tensor-programming <[email protected]>"
Expand All @@ -14,6 +14,9 @@ categories = [ "security" ]
homepage = "https://stronghold.docs.iota.org"
repository = "https://github.com/iotaledger/stronghold.rs"

[package.metadata.docs.rs]
all-features = true

[dependencies]
bincode = "1.3"
serde = { version = "1.0", features = [ "derive" ] }
Expand All @@ -24,30 +27,30 @@ thiserror = "1.0"
futures = "0.3"
riker = "0.4"

[dependencies.stronghold_engine]
path = "../engine"
version = "0.4"
[dependencies.stronghold_engine]
path = "../engine"
version = "0.4"

[dependencies.iota-crypto]
version = "0.5.0"
features = [
"random",
"ed25519",
"sha",
"hmac",
"bip39-en",
"slip10",
"chacha"
[dependencies.iota-crypto]
version = "0.5.0"
features = [
"random",
"ed25519",
"sha",
"hmac",
"bip39-en",
"slip10",
"chacha"
]

[dependencies.stronghold-communication]
path = "../communication"
optional = true
version = "0.4.1"
[dependencies.stronghold-communication]
path = "../communication"
optional = true
version = "0.5.0"

[dependencies.stronghold-utils]
path = "../utils"
version = "0.3"
[dependencies.stronghold-utils]
path = "../utils"
version = "0.3"

[features]
communication = [ "stronghold-communication" ]
Expand All @@ -61,6 +64,3 @@ rand = "0.8.3"
[[bench]]
name = "benchmark"
harness = false

[package.metadata.docs.rs]
all-features = true
9 changes: 9 additions & 0 deletions communication/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## \[0.5.0]

- Add method `stop_listening` to `Stronghold` interface.
Fix stop-listening in `SwarmTask` in communication.
- [6bd3111d](https://www.github.com/iotaledger/stronghold.rs/commit/6bd3111de9f70f13ec7d538a02d6a444df962f61) fix(comms): add / fix stop listening ([#222](https://www.github.com/iotaledger/stronghold.rs/pull/222)) on 2021-06-30
- Add communication fuzzer for distributed fuzzing with docker.
Patch Stronghold engine fuzzer.
- [4f9d0f2a](https://www.github.com/iotaledger/stronghold.rs/commit/4f9d0f2af0bbcfb16e579f92306cc2d177c50d93) Feature: client communications fuzzer ([#216](https://www.github.com/iotaledger/stronghold.rs/pull/216)) on 2021-06-15

## \[0.4.1]

- Merged Store, Vault and Snapshot into a single crate called Stronghold-Engine.
Expand Down
2 changes: 1 addition & 1 deletion communication/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stronghold-communication"
version = "0.4.1"
version = "0.5.0"
authors = [ "IOTA Stiftung" ]
edition = "2018"
license = "Apache-2.0"
Expand Down
6 changes: 6 additions & 0 deletions derive/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## \[0.3.0]

- Update inline Docs and README files to reflect the current state of the project.
- [fc95c271](https://www.github.com/iotaledger/stronghold.rs/commit/fc95c27128dedf8aa2d366776c22cb9c8e3f158a) add changes. on 2021-07-01
- [eafca12a](https://www.github.com/iotaledger/stronghold.rs/commit/eafca12ad915166d8039df6ad050bb1c65cbe248) fix changes format. on 2021-07-01

## \[0.2.0]

- Merged Store, Vault and Snapshot into a single crate called Stronghold-Engine.
Expand Down
2 changes: 1 addition & 1 deletion derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stronghold-derive"
version = "0.2.0"
version = "0.3.0"
authors = [
"IOTA Stiftung",
"tensor-programming <[email protected]>"
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

## \[0.5.0]

- Update inline Docs and README files to reflect the current state of the project.
- [fc95c271](https://www.github.com/iotaledger/stronghold.rs/commit/fc95c27128dedf8aa2d366776c22cb9c8e3f158a) add changes. on 2021-07-01
- [eafca12a](https://www.github.com/iotaledger/stronghold.rs/commit/eafca12ad915166d8039df6ad050bb1c65cbe248) fix changes format. on 2021-07-01
- Add communication fuzzer for distributed fuzzing with docker.
Patch Stronghold engine fuzzer.
- [4f9d0f2a](https://www.github.com/iotaledger/stronghold.rs/commit/4f9d0f2af0bbcfb16e579f92306cc2d177c50d93) Feature: client communications fuzzer ([#216](https://www.github.com/iotaledger/stronghold.rs/pull/216)) on 2021-06-15

## \[0.4.0]

- Merged Store, Vault and Snapshot into a single crate called Stronghold-Engine.
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 = "0.4.0"
version = "0.5.0"
authors = [
"IOTA Stiftung",
"tensorprogramming <[email protected]>"
Expand Down Expand Up @@ -28,7 +28,7 @@ serde = { version = "1.0", features = [ "derive" ] }

[dependencies.stronghold-runtime]
path = "runtime"
version = "0.3"
version = "0.4"

[dependencies.digest]
version = "0.9.0"
Expand Down
6 changes: 6 additions & 0 deletions engine/runtime/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## \[0.4.0]

- Update inline Docs and README files to reflect the current state of the project.
- [fc95c271](https://www.github.com/iotaledger/stronghold.rs/commit/fc95c27128dedf8aa2d366776c22cb9c8e3f158a) add changes. on 2021-07-01
- [eafca12a](https://www.github.com/iotaledger/stronghold.rs/commit/eafca12ad915166d8039df6ad050bb1c65cbe248) fix changes format. on 2021-07-01

## \[0.3.0]

- Added zeroing allocator to the runtime.\
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 = "0.3.0"
version = "0.4.0"
authors = [
"IOTA Stiftung",
"tensor-programming <[email protected]>"
Expand Down
11 changes: 11 additions & 0 deletions products/commandline/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## \[0.1.3]

- Add method `stop_listening` to `Stronghold` interface.
Fix stop-listening in `SwarmTask` in communication.
- Bumped due to a bump in iota-stronghold.
- [6bd3111d](https://www.github.com/iotaledger/stronghold.rs/commit/6bd3111de9f70f13ec7d538a02d6a444df962f61) fix(comms): add / fix stop listening ([#222](https://www.github.com/iotaledger/stronghold.rs/pull/222)) on 2021-06-30
- Update inline Docs and README files to reflect the current state of the project.
- Bumped due to a bump in iota-stronghold.
- [fc95c271](https://www.github.com/iotaledger/stronghold.rs/commit/fc95c27128dedf8aa2d366776c22cb9c8e3f158a) add changes. on 2021-07-01
- [eafca12a](https://www.github.com/iotaledger/stronghold.rs/commit/eafca12ad915166d8039df6ad050bb1c65cbe248) fix changes format. on 2021-07-01

## \[0.1.2]

- Merged Store, Vault and Snapshot into a single crate called Stronghold-Engine.
Expand Down
2 changes: 1 addition & 1 deletion products/commandline/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ workspace = { }

[package]
name = "commandline"
version = "0.1.2"
version = "0.1.3"
authors = [
"IOTA Stiftung",
"tensor-programming <[email protected]>"
Expand Down
7 changes: 7 additions & 0 deletions utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## \[0.3.1]

- Update inline Docs and README files to reflect the current state of the project.
- Bumped due to a bump in stronghold-derive.
- [fc95c271](https://www.github.com/iotaledger/stronghold.rs/commit/fc95c27128dedf8aa2d366776c22cb9c8e3f158a) add changes. on 2021-07-01
- [eafca12a](https://www.github.com/iotaledger/stronghold.rs/commit/eafca12ad915166d8039df6ad050bb1c65cbe248) fix changes format. on 2021-07-01

## \[0.3.0]

- Merged Store, Vault and Snapshot into a single crate called Stronghold-Engine.
Expand Down
4 changes: 2 additions & 2 deletions utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stronghold-utils"
version = "0.3.0"
version = "0.3.1"
authors = [
"IOTA Stiftung",
"tensor-programming <[email protected]>"
Expand All @@ -18,4 +18,4 @@ riker = "0.4"

[dependencies.stronghold-derive]
path = "../derive"
version = "0.2.0"
version = "0.3.0"

0 comments on commit 3d6ff8b

Please sign in to comment.