diff --git a/Cargo.lock b/Cargo.lock
index 527aa35a6e..07254142ce 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -3981,7 +3981,7 @@ checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
[[package]]
name = "sn_api"
-version = "0.80.4"
+version = "0.80.5"
dependencies = [
"anyhow",
"assert_fs",
@@ -4031,7 +4031,7 @@ dependencies = [
[[package]]
name = "sn_cli"
-version = "0.74.2"
+version = "0.74.3"
dependencies = [
"ansi_term",
"assert_cmd",
@@ -4083,7 +4083,7 @@ dependencies = [
[[package]]
name = "sn_client"
-version = "0.82.5"
+version = "0.82.6"
dependencies = [
"assert_matches",
"backoff",
@@ -4223,7 +4223,7 @@ dependencies = [
[[package]]
name = "sn_interface"
-version = "0.20.10"
+version = "0.20.11"
dependencies = [
"base64 0.13.1",
"bincode",
@@ -4272,7 +4272,7 @@ dependencies = [
[[package]]
name = "sn_node"
-version = "0.80.4"
+version = "0.80.5"
dependencies = [
"assert_matches",
"base64 0.13.1",
diff --git a/log_cmds_inspector/Cargo.toml b/log_cmds_inspector/Cargo.toml
index a8213937dd..cdfb1626bd 100644
--- a/log_cmds_inspector/Cargo.toml
+++ b/log_cmds_inspector/Cargo.toml
@@ -27,4 +27,4 @@ clap = { version = "3.0.0", features = ["derive", "env"] }
strum = "0.24"
strum_macros = "0.24"
walkdir = "2"
-sn_interface = { path = "../sn_interface", version = "^0.20.10" }
+sn_interface = { path = "../sn_interface", version = "^0.20.11" }
diff --git a/sn_api/CHANGELOG.md b/sn_api/CHANGELOG.md
index 1b9dd08fd2..7d71d3734b 100644
--- a/sn_api/CHANGELOG.md
+++ b/sn_api/CHANGELOG.md
@@ -5,8 +5,37 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
+## v0.80.5 (2023-03-26)
+
+### Chore
+
+ - bump sn_dbc to 11.0.0
+
+### Commit Statistics
+
+
+
+ - 1 commit contributed to the release.
+ - 3 days passed between releases.
+ - 1 commit was understood as [conventional](https://www.conventionalcommits.org).
+ - 0 issues like '(#ID)' were seen in commit messages
+
+### Commit Details
+
+
+
+view details
+
+ * **Uncategorized**
+ - Bump sn_dbc to 11.0.0 ([`de3abf8`](https://github.com/maidsafe/safe_network/commit/de3abf841789c5a696cd86a17d2c5743ad047c92))
+
+
## v0.80.4 (2023-03-23)
+### Chore
+
+ - sn_interface-0.20.8/sn_client-0.82.5/sn_node-0.80.2/sn_api-0.80.4
+
### Bug Fixes
- couple fixes for readings members from section_peer
@@ -17,8 +46,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- - 1 commit contributed to the release.
- - 1 commit was understood as [conventional](https://www.conventionalcommits.org).
+ - 2 commits contributed to the release.
+ - 2 commits were understood as [conventional](https://www.conventionalcommits.org).
- 0 issues like '(#ID)' were seen in commit messages
### Commit Details
@@ -28,6 +57,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
view details
* **Uncategorized**
+ - Sn_interface-0.20.8/sn_client-0.82.5/sn_node-0.80.2/sn_api-0.80.4 ([`4cf0bf0`](https://github.com/maidsafe/safe_network/commit/4cf0bf0e69f70c7303d4dcda581e5fbc54d0e51c))
- Couple fixes for readings members from section_peer ([`bd97c9a`](https://github.com/maidsafe/safe_network/commit/bd97c9aa64b7fc878bc5411b82f5105dce4b1e49))
@@ -35,6 +65,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
+
### Chore
diff --git a/sn_api/Cargo.toml b/sn_api/Cargo.toml
index 1d6c2fa5f8..0711a910a8 100644
--- a/sn_api/Cargo.toml
+++ b/sn_api/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "sn_api"
-version = "0.80.4"
+version = "0.80.5"
description = "Safe API"
authors = [
"bochaco ",
@@ -41,9 +41,9 @@ pbkdf2 = { version = "~0.7", default-features = false }
serde = "1.0.123"
serde_json = "1.0.62"
sha3 = "~0.9"
-sn_client = { path = "../sn_client", version = "^0.82.5" }
+sn_client = { path = "../sn_client", version = "^0.82.6" }
sn_dbc = { version = "11.0.0", features = ["serdes"] }
-sn_interface = { path = "../sn_interface", version = "^0.20.8" }
+sn_interface = { path = "../sn_interface", version = "^0.20.11" }
thiserror = "1.0.23"
time = { version = "~0.3.4", features = ["formatting"] }
tiny-keccak = { version = "2.0.2", features = ["sha3"] }
@@ -76,7 +76,7 @@ async_once = "~0.2.6"
hex = "~0.4"
predicates = "2.0"
proptest = "1.0.0"
-sn_client = { path = "../sn_client", version = "^0.82.5", features = ["test-utils"] }
-sn_interface = { path = "../sn_interface", version = "^0.20.8", features = ["test-utils"] }
+sn_client = { path = "../sn_client", version = "^0.82.6", features = ["test-utils"] }
+sn_interface = { path = "../sn_interface", version = "^0.20.11", features = ["test-utils"] }
tokio = { version = "1.6.0", features = ["macros"] }
tracing-subscriber = "~0.3.1"
diff --git a/sn_cli/CHANGELOG.md b/sn_cli/CHANGELOG.md
index 9c5cb26da2..e948f996cb 100644
--- a/sn_cli/CHANGELOG.md
+++ b/sn_cli/CHANGELOG.md
@@ -4,20 +4,52 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
+## v0.74.3 (2023-03-26)
+
+### Chore
+
+ - bump sn_dbc to 11.0.0
+
+### Commit Statistics
+
+
+
+ - 1 commit contributed to the release.
+ - 3 days passed between releases.
+ - 1 commit was understood as [conventional](https://www.conventionalcommits.org).
+ - 0 issues like '(#ID)' were seen in commit messages
+
+### Commit Details
+
+
+
+view details
+
+ * **Uncategorized**
+ - Bump sn_dbc to 11.0.0 ([`de3abf8`](https://github.com/maidsafe/safe_network/commit/de3abf841789c5a696cd86a17d2c5743ad047c92))
+
+
## v0.74.2 (2023-03-22)
+
+
+
### Chore
- sn_testnet-0.1.3/sn_interface-0.20.7/sn_comms-0.6.4/sn_client-0.82.4/sn_node-0.80.1/sn_api-0.80.3/sn_cli-0.74.2
- bump sn_dbc
+### Chore
+
+ - sn_testnet-0.1.3/sn_interface-0.20.7/sn_comms-0.6.4/sn_client-0.82.4/sn_node-0.80.1/sn_api-0.80.3/sn_cli-0.74.2
+
### Commit Statistics
- - 3 commits contributed to the release.
+ - 4 commits contributed to the release.
- 6 days passed between releases.
- - 2 commits were understood as [conventional](https://www.conventionalcommits.org).
+ - 3 commits were understood as [conventional](https://www.conventionalcommits.org).
- 0 issues like '(#ID)' were seen in commit messages
### Commit Details
@@ -27,6 +59,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
view details
* **Uncategorized**
+ - Sn_testnet-0.1.3/sn_interface-0.20.7/sn_comms-0.6.4/sn_client-0.82.4/sn_node-0.80.1/sn_api-0.80.3/sn_cli-0.74.2 ([`22c6e34`](https://github.com/maidsafe/safe_network/commit/22c6e341d28c913a3acaaeae0ceeb8c0a1ef4d4e))
- Revert "chore(release): sn_testnet-0.1.3/sn_interface-0.20.7/sn_comms-0.6.4/sn_client-0.82.4/sn_node-0.80.1/sn_api-0.80.3/sn_cli-0.74.2" ([`2e25949`](https://github.com/maidsafe/safe_network/commit/2e25949f685b0b805d8866527232c010380573ce))
- Sn_testnet-0.1.3/sn_interface-0.20.7/sn_comms-0.6.4/sn_client-0.82.4/sn_node-0.80.1/sn_api-0.80.3/sn_cli-0.74.2 ([`b062733`](https://github.com/maidsafe/safe_network/commit/b0627339e2458fd762084cc4805d7adedfd8c05e))
- Bump sn_dbc ([`29edfce`](https://github.com/maidsafe/safe_network/commit/29edfcea7d2cb1334422f2fe5dc90e72c7e5ac7c))
@@ -36,6 +69,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
+
### Chore
diff --git a/sn_cli/Cargo.toml b/sn_cli/Cargo.toml
index d7a917bbf8..3527dd7d2f 100644
--- a/sn_cli/Cargo.toml
+++ b/sn_cli/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "sn_cli"
-version = "0.74.2"
+version = "0.74.3"
description = "Safe CLI"
authors = [
"bochaco ",
@@ -37,7 +37,7 @@ relative-path = "1.3.2"
reqwest = { version = "~0.11", default-features = false, features = ["rustls-tls"] }
rmp-serde = "1.0.0"
sn_updater = { path = "../sn_updater", version = "^0.1.0" }
-sn_api = { path = "../sn_api", version = "^0.80.3", default-features = false, features = ["app"] }
+sn_api = { path = "../sn_api", version = "^0.80.5", default-features = false, features = ["app"] }
sn_dbc = { version = "11.0.0", features = ["serdes"] }
serde = "1.0.123"
serde_json = "1.0.62"
@@ -82,7 +82,7 @@ walkdir = "2.3.1"
multibase = "~0.9.1"
xor_name = "~5.0.0"
futures = "0.3.21"
-sn_api = { path = "../sn_api", version = "^0.80.3", features = ["app", "test-utils"] }
+sn_api = { path = "../sn_api", version = "^0.80.5", features = ["app", "test-utils"] }
httpmock = "~0.6.6"
[dev-dependencies.sn_cmd_test_utilities]
diff --git a/sn_client/CHANGELOG.md b/sn_client/CHANGELOG.md
index 4015871dbf..64cc8945d2 100644
--- a/sn_client/CHANGELOG.md
+++ b/sn_client/CHANGELOG.md
@@ -1113,8 +1113,37 @@ needed, as they keypair itself contains the Arcs we need.
- Self authentication Example
- Example to demonstrate Storage API
+## v0.82.6 (2023-03-26)
+
+### Chore
+
+ - bump sn_dbc to 11.0.0
+
+### Commit Statistics
+
+
+
+ - 1 commit contributed to the release.
+ - 3 days passed between releases.
+ - 1 commit was understood as [conventional](https://www.conventionalcommits.org).
+ - 0 issues like '(#ID)' were seen in commit messages
+
+### Commit Details
+
+
+
+view details
+
+ * **Uncategorized**
+ - Bump sn_dbc to 11.0.0 ([`de3abf8`](https://github.com/maidsafe/safe_network/commit/de3abf841789c5a696cd86a17d2c5743ad047c92))
+
+
## v0.82.5 (2023-03-23)
+### Chore
+
+ - sn_interface-0.20.8/sn_client-0.82.5/sn_node-0.80.2/sn_api-0.80.4
+
### Bug Fixes
- couple fixes for readings members from section_peer
@@ -1125,8 +1154,8 @@ needed, as they keypair itself contains the Arcs we need.
- - 1 commit contributed to the release.
- - 1 commit was understood as [conventional](https://www.conventionalcommits.org).
+ - 2 commits contributed to the release.
+ - 2 commits were understood as [conventional](https://www.conventionalcommits.org).
- 0 issues like '(#ID)' were seen in commit messages
### Commit Details
@@ -1136,6 +1165,7 @@ needed, as they keypair itself contains the Arcs we need.
view details
* **Uncategorized**
+ - Sn_interface-0.20.8/sn_client-0.82.5/sn_node-0.80.2/sn_api-0.80.4 ([`4cf0bf0`](https://github.com/maidsafe/safe_network/commit/4cf0bf0e69f70c7303d4dcda581e5fbc54d0e51c))
- Couple fixes for readings members from section_peer ([`bd97c9a`](https://github.com/maidsafe/safe_network/commit/bd97c9aa64b7fc878bc5411b82f5105dce4b1e49))
@@ -1144,6 +1174,7 @@ needed, as they keypair itself contains the Arcs we need.
+
### Chore
diff --git a/sn_client/Cargo.toml b/sn_client/Cargo.toml
index d96bf32276..5483eb0e21 100644
--- a/sn_client/Cargo.toml
+++ b/sn_client/Cargo.toml
@@ -8,7 +8,7 @@ license = "GPL-3.0"
name = "sn_client"
readme = "README.md"
repository = "https://github.com/maidsafe/safe_network"
-version = "0.82.5"
+version = "0.82.6"
[[bench]]
name = "upload_bytes"
@@ -72,7 +72,7 @@ serde_bytes = "~0.11.5"
serde_json = "1.0.53"
signature = "1.1.10"
sn_dbc = { version = "11.0.0", features = ["serdes"] }
-sn_interface = { path = "../sn_interface", version = "^0.20.8" }
+sn_interface = { path = "../sn_interface", version = "^0.20.11" }
sn_testnet = { path = "../sn_testnet", version = "^0.1.3" }
strum = "0.24"
strum_macros = "0.24"
@@ -100,7 +100,7 @@ rand = { version = "~0.8.5", features = ["small_rng"] }
termcolor="1.1.2"
tiny-keccak = { version = "2.0.2", features = ["sha3"] }
walkdir = "2"
-sn_interface = { path = "../sn_interface", version = "^0.20.8", features= ["test-utils"] }
+sn_interface = { path = "../sn_interface", version = "^0.20.11", features= ["test-utils"] }
[dev-dependencies.cargo-husky]
version = "1.5.0"
diff --git a/sn_cmd_test_utilities/Cargo.toml b/sn_cmd_test_utilities/Cargo.toml
index ef1e740916..0960b7ea82 100644
--- a/sn_cmd_test_utilities/Cargo.toml
+++ b/sn_cmd_test_utilities/Cargo.toml
@@ -17,7 +17,7 @@ dirs-next = "2.0.0"
rand = "~0.8"
serde = "1.0.123"
serde_json = "1.0.62"
-sn_api = { path = "../sn_api", version = "^0.80.4", default-features=false, features = ["app", "authd_client"] }
+sn_api = { path = "../sn_api", version = "^0.80.5", default-features=false, features = ["app", "authd_client"] }
walkdir = "2.3.1"
multibase = "~0.9.1"
diff --git a/sn_interface/CHANGELOG.md b/sn_interface/CHANGELOG.md
index 4978c36eb9..e44155a9b4 100644
--- a/sn_interface/CHANGELOG.md
+++ b/sn_interface/CHANGELOG.md
@@ -6,17 +6,18 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
-## v0.20.10 (2023-03-23)
+## v0.20.11 (2023-03-26)
### Chore
- - enable decision validation during update
+ - bump sn_dbc to 11.0.0
### Commit Statistics
- 1 commit contributed to the release.
+ - 2 days passed between releases.
- 1 commit was understood as [conventional](https://www.conventionalcommits.org).
- 0 issues like '(#ID)' were seen in commit messages
@@ -27,11 +28,44 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
view details
* **Uncategorized**
+ - Bump sn_dbc to 11.0.0 ([`de3abf8`](https://github.com/maidsafe/safe_network/commit/de3abf841789c5a696cd86a17d2c5743ad047c92))
+
+
+## v0.20.10 (2023-03-23)
+
+
+
+### Chore
+
+ - enable decision validation during update
+
+### Chore
+
+ - sn_interface-0.20.10
+
+### Commit Statistics
+
+
+
+ - 2 commits contributed to the release.
+ - 2 commits were understood as [conventional](https://www.conventionalcommits.org).
+ - 0 issues like '(#ID)' were seen in commit messages
+
+### Commit Details
+
+
+
+view details
+
+ * **Uncategorized**
+ - Sn_interface-0.20.10 ([`f51e9df`](https://github.com/maidsafe/safe_network/commit/f51e9df1b72800c1af4dd81c1a8671fb80607b04))
- Enable decision validation during update ([`52d300a`](https://github.com/maidsafe/safe_network/commit/52d300a806c91f5a51bf08c2ee1f3be406254126))
## v0.20.9 (2023-03-23)
+
+
### Chore
- sn_testnet-0.1.4/sn_interface-0.20.9/sn_node-0.80.3
@@ -40,14 +74,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- exposing a gRPC interface on safenode bin/app
- The safenode RPC service is exposed only when built with 'rpc-service' feature.
-- The safenode RPC service code is generated automatically using gRPC (`tonic` crate)
- from a `proto` file with messages definitions added to sn_interface.
-- The RPC is exposed at the same address as the node's address used for network connections,
- but using the subsequent port number.
-- A new final step was implemented for the sn_testnet tool, to run a check on the launched nodes,
- verifying their names and network knowledge are the expected for the launched testnet.
-- The new sn_testnet tool step is run only if built with 'verify-nodes' feature.
-- Running the `verify-nodes` check of sn_testnet in CI previous to sn_client e2e tests.
### Commit Statistics
@@ -68,6 +94,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Exposing a gRPC interface on safenode bin/app ([`16bb338`](https://github.com/maidsafe/safe_network/commit/16bb3389cdd665fe9a577587d9b7a6e8d21a3028))
+
+The safenode RPC service code is generated automatically using gRPC (tonic crate)from a proto file with messages definitions added to sn_interface.The RPC is exposed at the same address as the node’s address used for network connections,but using the subsequent port number.A new final step was implemented for the sn_testnet tool, to run a check on the launched nodes,verifying their names and network knowledge are the expected for the launched testnet.The new sn_testnet tool step is run only if built with ‘verify-nodes’ feature.Running the verify-nodes check of sn_testnet in CI previous to sn_client e2e tests.
+
## v0.20.8 (2023-03-23)
diff --git a/sn_interface/Cargo.toml b/sn_interface/Cargo.toml
index 6b76e8a6bd..7767ffd076 100644
--- a/sn_interface/Cargo.toml
+++ b/sn_interface/Cargo.toml
@@ -8,7 +8,7 @@ license = "GPL-3.0"
name = "sn_interface"
readme = "README.md"
repository = "https://github.com/maidsafe/safe_network"
-version = "0.20.10"
+version = "0.20.11"
[features]
test-utils = ["proptest"]
diff --git a/sn_node/CHANGELOG.md b/sn_node/CHANGELOG.md
index d9b0b4ef99..36303363ee 100644
--- a/sn_node/CHANGELOG.md
+++ b/sn_node/CHANGELOG.md
@@ -5,17 +5,18 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
-## v0.80.4 (2023-03-24)
+## v0.80.5 (2023-03-26)
### Chore
- - parse network knowledge members from logs
+ - bump sn_dbc to 11.0.0
### Commit Statistics
- 1 commit contributed to the release.
+ - 2 days passed between releases.
- 1 commit was understood as [conventional](https://www.conventionalcommits.org).
- 0 issues like '(#ID)' were seen in commit messages
@@ -26,11 +27,44 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
view details
* **Uncategorized**
+ - Bump sn_dbc to 11.0.0 ([`de3abf8`](https://github.com/maidsafe/safe_network/commit/de3abf841789c5a696cd86a17d2c5743ad047c92))
+
+
+## v0.80.4 (2023-03-24)
+
+
+
+### Chore
+
+ - parse network knowledge members from logs
+
+### Chore
+
+ - sn_node-0.80.4
+
+### Commit Statistics
+
+
+
+ - 2 commits contributed to the release.
+ - 2 commits were understood as [conventional](https://www.conventionalcommits.org).
+ - 0 issues like '(#ID)' were seen in commit messages
+
+### Commit Details
+
+
+
+view details
+
+ * **Uncategorized**
+ - Sn_node-0.80.4 ([`fc87d05`](https://github.com/maidsafe/safe_network/commit/fc87d05d6704c2e3af0de5f201f189650ad2b814))
- Parse network knowledge members from logs ([`142dd14`](https://github.com/maidsafe/safe_network/commit/142dd14fe1fb99a301e65adc72b739788015c959))
## v0.80.3 (2023-03-23)
+
+
### Chore
- sn_testnet-0.1.4/sn_interface-0.20.9/sn_node-0.80.3
@@ -39,14 +73,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- exposing a gRPC interface on safenode bin/app
- The safenode RPC service is exposed only when built with 'rpc-service' feature.
-- The safenode RPC service code is generated automatically using gRPC (`tonic` crate)
- from a `proto` file with messages definitions added to sn_interface.
-- The RPC is exposed at the same address as the node's address used for network connections,
- but using the subsequent port number.
-- A new final step was implemented for the sn_testnet tool, to run a check on the launched nodes,
- verifying their names and network knowledge are the expected for the launched testnet.
-- The new sn_testnet tool step is run only if built with 'verify-nodes' feature.
-- Running the `verify-nodes` check of sn_testnet in CI previous to sn_client e2e tests.
### Commit Statistics
@@ -67,6 +93,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Exposing a gRPC interface on safenode bin/app ([`16bb338`](https://github.com/maidsafe/safe_network/commit/16bb3389cdd665fe9a577587d9b7a6e8d21a3028))
+
+The safenode RPC service code is generated automatically using gRPC (tonic crate)from a proto file with messages definitions added to sn_interface.The RPC is exposed at the same address as the node’s address used for network connections,but using the subsequent port number.A new final step was implemented for the sn_testnet tool, to run a check on the launched nodes,verifying their names and network knowledge are the expected for the launched testnet.The new sn_testnet tool step is run only if built with ‘verify-nodes’ feature.Running the verify-nodes check of sn_testnet in CI previous to sn_client e2e tests.
+
## v0.80.2 (2023-03-23)
diff --git a/sn_node/Cargo.toml b/sn_node/Cargo.toml
index f96804527c..366935a72e 100644
--- a/sn_node/Cargo.toml
+++ b/sn_node/Cargo.toml
@@ -8,7 +8,7 @@ license = "GPL-3.0"
name = "sn_node"
readme = "README.md"
repository = "https://github.com/maidsafe/safe_network"
-version = "0.80.4"
+version = "0.80.5"
[[bin]]
name = "safenode"
@@ -73,7 +73,7 @@ sn_updater = { path = "../sn_updater", version = "^0.1.0" }
sn_comms = { path = "../sn_comms", version = "^0.6.4" }
sn_dbc = { version = "11.0.0", features = ["serdes"] }
sn_fault_detection = { path = "../sn_fault_detection", version = "^0.15.5" }
-sn_interface = { path = "../sn_interface", version = "^0.20.9" }
+sn_interface = { path = "../sn_interface", version = "^0.20.11" }
sn_sdkg = "3.1.3"
serde = { version = "1.0.111", features = ["derive", "rc"] }
serde_bytes = "~0.11.5"
@@ -124,7 +124,7 @@ rand = { version = "~0.8.5", features = ["small_rng"] }
tokio-util = { version = "~0.7", features = ["time"] }
walkdir = "2"
sn_comms = { path = "../sn_comms", version = "^0.6.4", features = ["test"] }
-sn_interface = { path = "../sn_interface", version = "^0.20.9", features= ["test-utils", "proptest"] }
+sn_interface = { path = "../sn_interface", version = "^0.20.11", features= ["test-utils", "proptest"] }
[dev-dependencies.cargo-husky]
version = "1.5.0"