diff --git a/.changes/comms-stop-listening.md b/.changes/comms-stop-listening.md deleted file mode 100644 index 174f712dd..000000000 --- a/.changes/comms-stop-listening.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"iota-stronghold": patch -"stronghold-communication": patch ---- - -Add method `stop_listening` to `Stronghold` interface. -Fix stop-listening in `SwarmTask` in communication. diff --git a/.changes/docs.md b/.changes/docs.md deleted file mode 100644 index 2d5210567..000000000 --- a/.changes/docs.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -"iota-stronghold": minor -"stronghold-engine": minor -"stronghold-derive": minor -"stronghold-runtime": minor ---- - -Update inline Docs and README files to reflect the current state of the project. \ No newline at end of file diff --git a/.changes/fuzzer.md b/.changes/fuzzer.md deleted file mode 100644 index 1c7e0a3b5..000000000 --- a/.changes/fuzzer.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"stronghold-communication": minor -"stronghold-engine": patch ---- - -Add communication fuzzer for distributed fuzzing with docker. -Patch Stronghold engine fuzzer. \ No newline at end of file diff --git a/client/CHANGELOG.md b/client/CHANGELOG.md index 5ae7d03ff..55cd1c33d 100644 --- a/client/CHANGELOG.md +++ b/client/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## \[0.5.0] + +- Add method `stop_listening` to `Stronghold` interface. + Fix stop-listening in `SwarmTask` in communication. + - [6bd3111](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. + - [fc95c27](https://www.github.com/iotaledger/stronghold.rs/commit/fc95c27128dedf8aa2d366776c22cb9c8e3f158a) add changes. on 2021-07-01 + - [eafca12](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. diff --git a/client/Cargo.toml b/client/Cargo.toml index b26660838..0967b6e4a 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "iota_stronghold" -version = "0.4.1" +version = "0.5.0" authors = [ "IOTA Stiftung", "tensor-programming " @@ -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" ] } @@ -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" ] @@ -61,6 +64,3 @@ rand = "0.8.3" [[bench]] name = "benchmark" harness = false - -[package.metadata.docs.rs] -all-features = true \ No newline at end of file diff --git a/communication/CHANGELOG.md b/communication/CHANGELOG.md index 21840d0ea..e279499f9 100644 --- a/communication/CHANGELOG.md +++ b/communication/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## \[0.5.0] + +- Add method `stop_listening` to `Stronghold` interface. + Fix stop-listening in `SwarmTask` in communication. + - [6bd3111](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. + - [4f9d0f2](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. diff --git a/communication/Cargo.toml b/communication/Cargo.toml index 48a1c5b74..6868113de 100644 --- a/communication/Cargo.toml +++ b/communication/Cargo.toml @@ -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" diff --git a/derive/CHANGELOG.md b/derive/CHANGELOG.md index 9b3f16bbd..1ee0f7d2b 100644 --- a/derive/CHANGELOG.md +++ b/derive/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[0.3.0] + +- Update inline Docs and README files to reflect the current state of the project. + - [fc95c27](https://www.github.com/iotaledger/stronghold.rs/commit/fc95c27128dedf8aa2d366776c22cb9c8e3f158a) add changes. on 2021-07-01 + - [eafca12](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. diff --git a/derive/Cargo.toml b/derive/Cargo.toml index 4d0dd37f1..74ef0fbc0 100644 --- a/derive/Cargo.toml +++ b/derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stronghold-derive" -version = "0.2.0" +version = "0.3.0" authors = [ "IOTA Stiftung", "tensor-programming " diff --git a/engine/CHANGELOG.md b/engine/CHANGELOG.md index 9a2906cbb..72a6fb108 100644 --- a/engine/CHANGELOG.md +++ b/engine/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## \[0.5.0] + +- Update inline Docs and README files to reflect the current state of the project. + - [fc95c27](https://www.github.com/iotaledger/stronghold.rs/commit/fc95c27128dedf8aa2d366776c22cb9c8e3f158a) add changes. on 2021-07-01 + - [eafca12](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. + - [4f9d0f2](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. diff --git a/engine/Cargo.toml b/engine/Cargo.toml index 54f363309..1d8fdaa22 100644 --- a/engine/Cargo.toml +++ b/engine/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stronghold_engine" -version = "0.4.0" +version = "0.5.0" authors = [ "IOTA Stiftung", "tensorprogramming " @@ -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" diff --git a/engine/runtime/CHANGELOG.md b/engine/runtime/CHANGELOG.md index 376add08c..af7bb9551 100644 --- a/engine/runtime/CHANGELOG.md +++ b/engine/runtime/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[0.4.0] + +- Update inline Docs and README files to reflect the current state of the project. + - [fc95c27](https://www.github.com/iotaledger/stronghold.rs/commit/fc95c27128dedf8aa2d366776c22cb9c8e3f158a) add changes. on 2021-07-01 + - [eafca12](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.\ diff --git a/engine/runtime/Cargo.toml b/engine/runtime/Cargo.toml index f089e91a4..ab080f810 100644 --- a/engine/runtime/Cargo.toml +++ b/engine/runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stronghold-runtime" -version = "0.3.0" +version = "0.4.0" authors = [ "IOTA Stiftung", "tensor-programming " diff --git a/products/commandline/CHANGELOG.md b/products/commandline/CHANGELOG.md index 4b084c776..df618890d 100644 --- a/products/commandline/CHANGELOG.md +++ b/products/commandline/CHANGELOG.md @@ -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. + - [6bd3111](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. + - [fc95c27](https://www.github.com/iotaledger/stronghold.rs/commit/fc95c27128dedf8aa2d366776c22cb9c8e3f158a) add changes. on 2021-07-01 + - [eafca12](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. diff --git a/products/commandline/Cargo.toml b/products/commandline/Cargo.toml index 0d0d11a0e..5c441bf3a 100644 --- a/products/commandline/Cargo.toml +++ b/products/commandline/Cargo.toml @@ -2,7 +2,7 @@ workspace = { } [package] name = "commandline" -version = "0.1.2" +version = "0.1.3" authors = [ "IOTA Stiftung", "tensor-programming " diff --git a/utils/CHANGELOG.md b/utils/CHANGELOG.md index 2097ad63f..1adfe85ef 100644 --- a/utils/CHANGELOG.md +++ b/utils/CHANGELOG.md @@ -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. + - [fc95c27](https://www.github.com/iotaledger/stronghold.rs/commit/fc95c27128dedf8aa2d366776c22cb9c8e3f158a) add changes. on 2021-07-01 + - [eafca12](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. diff --git a/utils/Cargo.toml b/utils/Cargo.toml index bbd1bd302..6e8344988 100644 --- a/utils/Cargo.toml +++ b/utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stronghold-utils" -version = "0.3.0" +version = "0.3.1" authors = [ "IOTA Stiftung", "tensor-programming " @@ -18,4 +18,4 @@ riker = "0.4" [dependencies.stronghold-derive] path = "../derive" - version = "0.2.0" + version = "0.3.0"