diff --git a/Cargo.lock b/Cargo.lock
index a8aa8f5c41..126c9506c6 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -3998,7 +3998,7 @@ dependencies = [
[[package]]
name = "sn_client"
-version = "0.82.0"
+version = "0.82.1"
dependencies = [
"assert_matches",
"backoff",
@@ -4138,7 +4138,7 @@ dependencies = [
[[package]]
name = "sn_interface"
-version = "0.20.2"
+version = "0.20.3"
dependencies = [
"base64 0.13.1",
"bincode",
@@ -4201,7 +4201,7 @@ dependencies = [
[[package]]
name = "sn_node"
-version = "0.78.2"
+version = "0.78.3"
dependencies = [
"assert_matches",
"base64 0.13.1",
diff --git a/log_cmds_inspector/Cargo.toml b/log_cmds_inspector/Cargo.toml
index fe1429e28e..d672d66f29 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.2" }
+sn_interface = { path = "../sn_interface", version = "^0.20.3" }
diff --git a/sn_client/CHANGELOG.md b/sn_client/CHANGELOG.md
index 0d9187e589..1aaecd079c 100644
--- a/sn_client/CHANGELOG.md
+++ b/sn_client/CHANGELOG.md
@@ -1113,8 +1113,36 @@ needed, as they keypair itself contains the Arcs we need.
- Self authentication Example
- Example to demonstrate Storage API
+## v0.82.1 (2023-03-09)
+
+### New Features
+
+ - adds query to get Elder reward keys
+
+### Commit Statistics
+
+
+
+ - 1 commit contributed to the release.
+ - 1 day 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**
+ - Adds query to get Elder reward keys ([`7789cd5`](https://github.com/maidsafe/safe_network/commit/7789cd503b8f8f1f254d90741950958e678cc420))
+
+
## v0.81.5 (2023-03-07)
+
+
+
### Refactor
- reduce churn interval; retry con
@@ -1122,12 +1150,16 @@ needed, as they keypair itself contains the Arcs we need.
will be retried up to 5 times, with 1.5s delay.
- disable re-attempts for connect
+### Chore
+
+ - sn_client-0.81.5
+
### Commit Statistics
- - 2 commits contributed to the release.
- - 2 commits were understood as [conventional](https://www.conventionalcommits.org).
+ - 3 commits contributed to the release.
+ - 3 commits were understood as [conventional](https://www.conventionalcommits.org).
- 0 issues like '(#ID)' were seen in commit messages
### Commit Details
@@ -1137,6 +1169,7 @@ needed, as they keypair itself contains the Arcs we need.
view details
* **Uncategorized**
+ - Sn_client-0.81.5 ([`76a1d05`](https://github.com/maidsafe/safe_network/commit/76a1d051b8082bcf2e17a12c605a527d098c176b))
- Reduce churn interval; retry con ([`ecbdd14`](https://github.com/maidsafe/safe_network/commit/ecbdd14cfaa963777b903bfba549eb170113e503))
- Disable re-attempts for connect ([`311b204`](https://github.com/maidsafe/safe_network/commit/311b204dc3413409f89c9dd73cce9e7d6dfa6a95))
@@ -1146,6 +1179,7 @@ needed, as they keypair itself contains the Arcs we need.
+
### Other
@@ -1276,6 +1310,40 @@ needed, as they keypair itself contains the Arcs we need.
- Use max_backoff_interval when retrying checking replicas ([`87a5634`](https://github.com/maidsafe/safe_network/commit/87a5634612282c189f68293940d85830e8d65400))
+## v0.82.0 (2023-03-08)
+
+### Chore
+
+ - sn_interface-0.20.0/sn_comms-0.6.0/sn_client-0.82.0/sn_node-0.78.0/sn_api-0.80.0/sn_cli-0.73.0
+
+### New Features
+
+ - encapsulate Dbc reasons
+
+### New Features (BREAKING)
+
+ - DBC reasons
+
+### Commit Statistics
+
+
+
+ - 3 commits contributed to the release.
+ - 3 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.0/sn_comms-0.6.0/sn_client-0.82.0/sn_node-0.78.0/sn_api-0.80.0/sn_cli-0.73.0 ([`1e531f8`](https://github.com/maidsafe/safe_network/commit/1e531f807b1c920e61ec9ad2490f6590bf43fdd2))
+ - Encapsulate Dbc reasons ([`fa49b0d`](https://github.com/maidsafe/safe_network/commit/fa49b0d05d944f0ab1141b3c18bd61ac345b2fed))
+ - DBC reasons ([`97ee1eb`](https://github.com/maidsafe/safe_network/commit/97ee1eb5a55a0b4dbea9ea8a512351dd3219a6ed))
+
+
## v0.81.0 (2023-02-27)
diff --git a/sn_client/Cargo.toml b/sn_client/Cargo.toml
index 9b01316c9a..8a4dc27b44 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.0"
+version = "0.82.1"
[[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 = "9.0.0", features = ["serdes"] }
-sn_interface = { path = "../sn_interface", version = "^0.20.0" }
+sn_interface = { path = "../sn_interface", version = "^0.20.3" }
strum = "0.24"
strum_macros = "0.24"
tempfile = "3.2.0"
@@ -100,7 +100,7 @@ sn_launch_tool = "0.13.1"
termcolor="1.1.2"
tiny-keccak = { version = "2.0.2", features = ["sha3"] }
walkdir = "2"
-sn_interface = { path = "../sn_interface", version = "^0.20.0", features= ["test-utils"] }
+sn_interface = { path = "../sn_interface", version = "^0.20.3", features= ["test-utils"] }
[dev-dependencies.cargo-husky]
version = "1.5.0"
diff --git a/sn_interface/CHANGELOG.md b/sn_interface/CHANGELOG.md
index fd19025e01..5a8d7361f0 100644
--- a/sn_interface/CHANGELOG.md
+++ b/sn_interface/CHANGELOG.md
@@ -6,19 +6,49 @@ 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.3 (2023-03-09)
+
+### New Features
+
+ - adds query to get Elder reward keys
+
+### Commit Statistics
+
+
+
+ - 1 commit contributed to the release.
+ - 1 commit was understood as [conventional](https://www.conventionalcommits.org).
+ - 0 issues like '(#ID)' were seen in commit messages
+
+### Commit Details
+
+
+
+view details
+
+ * **Uncategorized**
+ - Adds query to get Elder reward keys ([`7789cd5`](https://github.com/maidsafe/safe_network/commit/7789cd503b8f8f1f254d90741950958e678cc420))
+
+
## v0.20.2 (2023-03-09)
+
+
### Chore
- clean up a few things from commit 4097de4
+### Chore
+
+ - sn_interface-0.20.2/sn_node-0.78.2
+
### Commit Statistics
- - 1 commit contributed to the release.
+ - 2 commits contributed to the release.
- 1 day passed between releases.
- - 1 commit was understood as [conventional](https://www.conventionalcommits.org).
+ - 2 commits were understood as [conventional](https://www.conventionalcommits.org).
- 0 issues like '(#ID)' were seen in commit messages
### Commit Details
@@ -28,11 +58,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
view details
* **Uncategorized**
+ - Sn_interface-0.20.2/sn_node-0.78.2 ([`07b4cb7`](https://github.com/maidsafe/safe_network/commit/07b4cb75e2b1a1db93b7ef9e7d60ed802520f9c9))
- Clean up a few things from commit 4097de4 ([`0ff8d0b`](https://github.com/maidsafe/safe_network/commit/0ff8d0bef0c8c9a4ef38d094337b25070f7e7ac0))
## v0.20.1 (2023-03-08)
+
+
### Chore
- sn_interface-0.20.1/sn_node-0.78.1
diff --git a/sn_interface/Cargo.toml b/sn_interface/Cargo.toml
index ce5188cfcc..e0639c0d63 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.2"
+version = "0.20.3"
[features]
test-utils = ["proptest"]
diff --git a/sn_node/CHANGELOG.md b/sn_node/CHANGELOG.md
index 7028bb0a62..90960e6551 100644
--- a/sn_node/CHANGELOG.md
+++ b/sn_node/CHANGELOG.md
@@ -5,19 +5,49 @@ 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.78.3 (2023-03-09)
+
+### New Features
+
+ - adds query to get Elder reward keys
+
+### Commit Statistics
+
+
+
+ - 1 commit contributed to the release.
+ - 1 commit was understood as [conventional](https://www.conventionalcommits.org).
+ - 0 issues like '(#ID)' were seen in commit messages
+
+### Commit Details
+
+
+
+view details
+
+ * **Uncategorized**
+ - Adds query to get Elder reward keys ([`7789cd5`](https://github.com/maidsafe/safe_network/commit/7789cd503b8f8f1f254d90741950958e678cc420))
+
+
## v0.78.2 (2023-03-09)
+
+
### Chore
- clean up a few things from commit 4097de4
+### Chore
+
+ - sn_interface-0.20.2/sn_node-0.78.2
+
### Commit Statistics
- - 1 commit contributed to the release.
+ - 2 commits contributed to the release.
- 1 day passed between releases.
- - 1 commit was understood as [conventional](https://www.conventionalcommits.org).
+ - 2 commits were understood as [conventional](https://www.conventionalcommits.org).
- 0 issues like '(#ID)' were seen in commit messages
### Commit Details
@@ -27,11 +57,82 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
view details
* **Uncategorized**
+ - Sn_interface-0.20.2/sn_node-0.78.2 ([`07b4cb7`](https://github.com/maidsafe/safe_network/commit/07b4cb75e2b1a1db93b7ef9e7d60ed802520f9c9))
- Clean up a few things from commit 4097de4 ([`0ff8d0b`](https://github.com/maidsafe/safe_network/commit/0ff8d0bef0c8c9a4ef38d094337b25070f7e7ac0))
+## v0.78.1 (2023-03-08)
+
+
+
+### Chore
+
+ - sn_interface-0.20.1/sn_node-0.78.1
+
+### Bug Fixes
+
+ - overflow in DKG log
+
+### Commit Statistics
+
+
+
+ - 3 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.1/sn_node-0.78.1 ([`2f99d36`](https://github.com/maidsafe/safe_network/commit/2f99d36a8606dc2bb39ac025adcd358fc48fcb91))
+ - Feat(rewards): add bls pub key to node - This is the first step to simple dbc tx fees and rewards for Elders. - It allows Elders to check if dbc transactions contain any output for them. ([`a05fa20`](https://github.com/maidsafe/safe_network/commit/a05fa20f371e4a5a84c795f470e24cd5b0c4ec3b))
+ - Overflow in DKG log ([`350b07d`](https://github.com/maidsafe/safe_network/commit/350b07d6db9c99c210f81b9c0a670687b177581f))
+
+
+## v0.78.0 (2023-03-08)
+
+
+
+### Chore
+
+ - sn_interface-0.20.0/sn_comms-0.6.0/sn_client-0.82.0/sn_node-0.78.0/sn_api-0.80.0/sn_cli-0.73.0
+
+### New Features
+
+ - encapsulate Dbc reasons
+
+### New Features (BREAKING)
+
+ - DBC reasons
+
+### Commit Statistics
+
+
+
+ - 3 commits contributed to the release.
+ - 3 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.0/sn_comms-0.6.0/sn_client-0.82.0/sn_node-0.78.0/sn_api-0.80.0/sn_cli-0.73.0 ([`1e531f8`](https://github.com/maidsafe/safe_network/commit/1e531f807b1c920e61ec9ad2490f6590bf43fdd2))
+ - Encapsulate Dbc reasons ([`fa49b0d`](https://github.com/maidsafe/safe_network/commit/fa49b0d05d944f0ab1141b3c18bd61ac345b2fed))
+ - DBC reasons ([`97ee1eb`](https://github.com/maidsafe/safe_network/commit/97ee1eb5a55a0b4dbea9ea8a512351dd3219a6ed))
+
+
## v0.77.14 (2023-03-07)
+
+
### Chore
- sn_interface-0.19.8/sn_node-0.77.14
@@ -504,70 +605,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Ae updates and affects split into sap and member updates ([`fe2f46b`](https://github.com/maidsafe/safe_network/commit/fe2f46bcb60185a2c2fd28c0dcc3befdeb9851c0))
-## v0.78.1 (2023-03-08)
-
-### Chore
-
- - sn_interface-0.20.1/sn_node-0.78.1
-
-### Bug Fixes
-
- - overflow in DKG log
-
-### Commit Statistics
-
-
-
- - 3 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.1/sn_node-0.78.1 ([`2f99d36`](https://github.com/maidsafe/safe_network/commit/2f99d36a8606dc2bb39ac025adcd358fc48fcb91))
- - Feat(rewards): add bls pub key to node - This is the first step to simple dbc tx fees and rewards for Elders. - It allows Elders to check if dbc transactions contain any output for them. ([`a05fa20`](https://github.com/maidsafe/safe_network/commit/a05fa20f371e4a5a84c795f470e24cd5b0c4ec3b))
- - Overflow in DKG log ([`350b07d`](https://github.com/maidsafe/safe_network/commit/350b07d6db9c99c210f81b9c0a670687b177581f))
-
-
-## v0.78.0 (2023-03-08)
-
-### Chore
-
- - sn_interface-0.20.0/sn_comms-0.6.0/sn_client-0.82.0/sn_node-0.78.0/sn_api-0.80.0/sn_cli-0.73.0
-
-### New Features
-
- - encapsulate Dbc reasons
-
-### New Features (BREAKING)
-
- - DBC reasons
-
-### Commit Statistics
-
-
-
- - 3 commits contributed to the release.
- - 3 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.0/sn_comms-0.6.0/sn_client-0.82.0/sn_node-0.78.0/sn_api-0.80.0/sn_cli-0.73.0 ([`1e531f8`](https://github.com/maidsafe/safe_network/commit/1e531f807b1c920e61ec9ad2490f6590bf43fdd2))
- - Encapsulate Dbc reasons ([`fa49b0d`](https://github.com/maidsafe/safe_network/commit/fa49b0d05d944f0ab1141b3c18bd61ac345b2fed))
- - DBC reasons ([`97ee1eb`](https://github.com/maidsafe/safe_network/commit/97ee1eb5a55a0b4dbea9ea8a512351dd3219a6ed))
-
-
## v0.77.1 (2023-02-28)
diff --git a/sn_node/Cargo.toml b/sn_node/Cargo.toml
index c1a3f31c36..0620674179 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.78.2"
+version = "0.78.3"
[[bench]]
name = "data_storage"
@@ -64,7 +64,7 @@ sn_updater = { path = "../sn_updater", version = "^0.1.0" }
sn_comms = { path = "../sn_comms", version = "^0.6.0" }
sn_dbc = { version = "9.0.0", features = ["serdes"] }
sn_fault_detection = { path = "../sn_fault_detection", version = "^0.15.5" }
-sn_interface = { path = "../sn_interface", version = "^0.20.2" }
+sn_interface = { path = "../sn_interface", version = "^0.20.3" }
sn_sdkg = "3.1.2"
serde = { version = "1.0.111", features = ["derive", "rc"] }
serde_bytes = "~0.11.5"
@@ -113,7 +113,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.0", features = ["test"] }
-sn_interface = { path = "../sn_interface", version = "^0.20.2", features= ["test-utils", "proptest"] }
+sn_interface = { path = "../sn_interface", version = "^0.20.3", features= ["test-utils", "proptest"] }
[dev-dependencies.cargo-husky]
version = "1.5.0"