diff --git a/Cargo.lock b/Cargo.lock
index 4ea7285ad2..1c1705ffe0 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -4277,7 +4277,7 @@ dependencies = [
[[package]]
name = "sn_fault_detection"
-version = "0.15.5"
+version = "0.15.6"
dependencies = [
"eyre",
"itertools",
@@ -4291,7 +4291,7 @@ dependencies = [
[[package]]
name = "sn_interface"
-version = "0.22.3"
+version = "0.22.4"
dependencies = [
"assert_matches",
"bincode",
@@ -4338,7 +4338,7 @@ dependencies = [
[[package]]
name = "sn_node"
-version = "0.82.5"
+version = "0.82.6"
dependencies = [
"assert_matches",
"base64 0.13.1",
diff --git a/log_cmds_inspector/Cargo.toml b/log_cmds_inspector/Cargo.toml
index ecb6a84c72..15c80b4c94 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.22.3" }
+sn_interface = { path = "../sn_interface", version = "^0.22.4" }
diff --git a/sn_fault_detection/CHANGELOG.md b/sn_fault_detection/CHANGELOG.md
index eeb7be9050..4052804a53 100644
--- a/sn_fault_detection/CHANGELOG.md
+++ b/sn_fault_detection/CHANGELOG.md
@@ -5,19 +5,58 @@ 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.15.6 (2023-03-31)
+
+### Chore
+
+ - sn_testnet-0.1.5/sn_interface-0.22.4/sn_fault_detection-0.15.6/sn_node-0.82.6
+ - remove env filter where not needed
+
+### Other
+
+ - cleanup some deps
+
+### Commit Statistics
+
+
+
+ - 4 commits contributed to the release.
+ - 31 days passed between releases.
+ - 3 commits were understood as [conventional](https://www.conventionalcommits.org).
+ - 0 issues like '(#ID)' were seen in commit messages
+
+### Commit Details
+
+
+
+view details
+
+ * **Uncategorized**
+ - Revert "chore(release): sn_testnet-0.1.5/sn_interface-0.22.4/sn_fault_detection-0.15.6/sn_node-0.82.6" ([`7bcc470`](https://github.com/maidsafe/safe_network/commit/7bcc470018c003581606815363494ed43ffe47ff))
+ - Sn_testnet-0.1.5/sn_interface-0.22.4/sn_fault_detection-0.15.6/sn_node-0.82.6 ([`995f26e`](https://github.com/maidsafe/safe_network/commit/995f26ec09b5a22910e7b7f747e32ac7a426bd06))
+ - Remove env filter where not needed ([`169f7c2`](https://github.com/maidsafe/safe_network/commit/169f7c2a4d2a30c32381ef7e2e7b6e09243b8164))
+ - Cleanup some deps ([`9f6760f`](https://github.com/maidsafe/safe_network/commit/9f6760f5c341e9d2925c3f99ebdf93f8e23162d1))
+
+
## v0.15.5 (2023-02-28)
+
+
### Refactor
- remove unused pub fn/methods
+### Chore
+
+ - sn_interface-0.19.1/sn_fault_detection-0.15.5/sn_node-0.77.1/sn_cli-0.72.1
+
### Commit Statistics
- - 1 commit contributed to the release.
+ - 2 commits contributed to the release.
- 20 days 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,12 +66,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
view details
* **Uncategorized**
+ - Sn_interface-0.19.1/sn_fault_detection-0.15.5/sn_node-0.77.1/sn_cli-0.72.1 ([`558061d`](https://github.com/maidsafe/safe_network/commit/558061d5eea7bc1f0feac310afb91ef9ca7c681e))
- Remove unused pub fn/methods ([`3fda80a`](https://github.com/maidsafe/safe_network/commit/3fda80a40c508d16fbe097091252a98b01f8f339))
## v0.15.4 (2023-02-07)
+
### Chore
diff --git a/sn_fault_detection/Cargo.toml b/sn_fault_detection/Cargo.toml
index 1b8b0113ae..13c4c35e5f 100644
--- a/sn_fault_detection/Cargo.toml
+++ b/sn_fault_detection/Cargo.toml
@@ -8,7 +8,7 @@ license = "GPL-3.0"
name = "sn_fault_detection"
readme = "README.md"
repository = "https://github.com/maidsafe/safe_network"
-version = "0.15.5"
+version = "0.15.6"
[features]
default = []
diff --git a/sn_interface/CHANGELOG.md b/sn_interface/CHANGELOG.md
index a7477e7892..d1df994fcc 100644
--- a/sn_interface/CHANGELOG.md
+++ b/sn_interface/CHANGELOG.md
@@ -6,8 +6,50 @@ 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.22.4 (2023-03-31)
+
+### Chore
+
+ - sn_testnet-0.1.5/sn_interface-0.22.4/sn_fault_detection-0.15.6/sn_node-0.82.6
+ - remove qp2p dep
+
+### New Features
+
+ - impl supply/demand-adjusted fee
+
+### Other
+
+ - cleanup some deps
+
+### Commit Statistics
+
+
+
+ - 5 commits contributed to the release.
+ - 1 day passed between releases.
+ - 4 commits were understood as [conventional](https://www.conventionalcommits.org).
+ - 0 issues like '(#ID)' were seen in commit messages
+
+### Commit Details
+
+
+
+view details
+
+ * **Uncategorized**
+ - Revert "chore(release): sn_testnet-0.1.5/sn_interface-0.22.4/sn_fault_detection-0.15.6/sn_node-0.82.6" ([`7bcc470`](https://github.com/maidsafe/safe_network/commit/7bcc470018c003581606815363494ed43ffe47ff))
+ - Impl supply/demand-adjusted fee ([`f1de619`](https://github.com/maidsafe/safe_network/commit/f1de619190d28cc72ae7cdfd49bbb02b5676be1c))
+ - Sn_testnet-0.1.5/sn_interface-0.22.4/sn_fault_detection-0.15.6/sn_node-0.82.6 ([`995f26e`](https://github.com/maidsafe/safe_network/commit/995f26ec09b5a22910e7b7f747e32ac7a426bd06))
+ - Cleanup some deps ([`9f6760f`](https://github.com/maidsafe/safe_network/commit/9f6760f5c341e9d2925c3f99ebdf93f8e23162d1))
+ - Remove qp2p dep ([`841eaff`](https://github.com/maidsafe/safe_network/commit/841eaff15bab9cab5454b2b42790e48df5a316e1))
+
+
## v0.22.3 (2023-03-30)
+### Chore
+
+ - sn_interface-0.22.3/sn_node-0.82.5
+
### Bug Fixes
- check current elders against all pks in case of split
@@ -16,8 +58,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
@@ -27,11 +69,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
view details
* **Uncategorized**
+ - Sn_interface-0.22.3/sn_node-0.82.5 ([`350fcec`](https://github.com/maidsafe/safe_network/commit/350fcec1913f38a63620f4d51486809e429e7d88))
- Check current elders against all pks in case of split ([`c74b1ff`](https://github.com/maidsafe/safe_network/commit/c74b1ff022d62067cfe6c6c5ed3880aefe82e149))
## v0.22.2 (2023-03-29)
+
+
### Chore
- sn_interface-0.22.2/sn_node-0.82.2
@@ -137,8 +182,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- new cmds to interact with a safenode RPC service
- The new `node` CLI subcommand is made available only when building
with `node-ctl` feature flag.
-- Adding a new RPC service to safenode to request it to update itself.
-- Migrate sn_api and sn_cli CI tests to use sn_testnet 'verify-nodes' feature.
### Commit Statistics
@@ -159,6 +202,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- New cmds to interact with a safenode RPC service ([`94d2050`](https://github.com/maidsafe/safe_network/commit/94d20504b58cb09a203ffd9c03fdcab07a810d0b))
+
+Adding a new RPC service to safenode to request it to update itself.Migrate sn_api and sn_cli CI tests to use sn_testnet ‘verify-nodes’ feature.
+
## v0.20.12 (2023-03-27)
diff --git a/sn_interface/Cargo.toml b/sn_interface/Cargo.toml
index 873e03da9c..e07557591c 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.22.3"
+version = "0.22.4"
[features]
test-utils = ["proptest"]
diff --git a/sn_node/CHANGELOG.md b/sn_node/CHANGELOG.md
index 19de74db5a..3a7383d042 100644
--- a/sn_node/CHANGELOG.md
+++ b/sn_node/CHANGELOG.md
@@ -5,8 +5,48 @@ 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.82.6 (2023-03-31)
+
+### Chore
+
+ - sn_testnet-0.1.5/sn_interface-0.22.4/sn_fault_detection-0.15.6/sn_node-0.82.6
+
+### New Features
+
+ - impl supply/demand-adjusted fee
+
+### Bug Fixes
+
+ - avoid block handover vote for split
+
+### Commit Statistics
+
+
+
+ - 4 commits contributed to the release.
+ - 1 day passed between releases.
+ - 3 commits were understood as [conventional](https://www.conventionalcommits.org).
+ - 0 issues like '(#ID)' were seen in commit messages
+
+### Commit Details
+
+
+
+view details
+
+ * **Uncategorized**
+ - Revert "chore(release): sn_testnet-0.1.5/sn_interface-0.22.4/sn_fault_detection-0.15.6/sn_node-0.82.6" ([`7bcc470`](https://github.com/maidsafe/safe_network/commit/7bcc470018c003581606815363494ed43ffe47ff))
+ - Impl supply/demand-adjusted fee ([`f1de619`](https://github.com/maidsafe/safe_network/commit/f1de619190d28cc72ae7cdfd49bbb02b5676be1c))
+ - Sn_testnet-0.1.5/sn_interface-0.22.4/sn_fault_detection-0.15.6/sn_node-0.82.6 ([`995f26e`](https://github.com/maidsafe/safe_network/commit/995f26ec09b5a22910e7b7f747e32ac7a426bd06))
+ - Avoid block handover vote for split ([`41ccde7`](https://github.com/maidsafe/safe_network/commit/41ccde7ec4e7b5918ce25c074e724491d6db845a))
+
+
## v0.82.5 (2023-03-30)
+### Chore
+
+ - sn_interface-0.22.3/sn_node-0.82.5
+
### Bug Fixes
- check current elders against all pks in case of split
@@ -15,8 +55,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
@@ -26,11 +66,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
view details
* **Uncategorized**
+ - Sn_interface-0.22.3/sn_node-0.82.5 ([`350fcec`](https://github.com/maidsafe/safe_network/commit/350fcec1913f38a63620f4d51486809e429e7d88))
- Check current elders against all pks in case of split ([`c74b1ff`](https://github.com/maidsafe/safe_network/commit/c74b1ff022d62067cfe6c6c5ed3880aefe82e149))
## v0.82.4 (2023-03-29)
+
+
### Chore
- sn_node-0.82.4/sn_cli-0.76.1
diff --git a/sn_node/Cargo.toml b/sn_node/Cargo.toml
index 0442eb1cd7..258728f568 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.82.5"
+version = "0.82.6"
[[bin]]
name = "safenode"
@@ -72,8 +72,8 @@ sn_consensus = "3.3.3"
sn_updater = { path = "../sn_updater", version = "^0.2.0" }
sn_comms = { path = "../sn_comms", version = "^0.8.0" }
sn_dbc = { version = "12.0.0", features = ["serdes"] }
-sn_fault_detection = { path = "../sn_fault_detection", version = "^0.15.5" }
-sn_interface = { path = "../sn_interface", version = "^0.22.3" }
+sn_fault_detection = { path = "../sn_fault_detection", version = "^0.15.6" }
+sn_interface = { path = "../sn_interface", version = "^0.22.4" }
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.8.0", features = ["test"] }
-sn_interface = { path = "../sn_interface", version = "^0.22.3", features= ["test-utils", "proptest"] }
+sn_interface = { path = "../sn_interface", version = "^0.22.4", features= ["test-utils", "proptest"] }
[dev-dependencies.cargo-husky]
version = "1.5.0"