diff --git a/Cargo.lock b/Cargo.lock
index 7f5ecb2ea7..cdf5d7e78d 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -3913,7 +3913,7 @@ dependencies = [
[[package]]
name = "sn_client"
-version = "0.81.4"
+version = "0.81.5"
dependencies = [
"assert_matches",
"backoff",
diff --git a/sn_client/CHANGELOG.md b/sn_client/CHANGELOG.md
index 7f1876eab4..0d9187e589 100644
--- a/sn_client/CHANGELOG.md
+++ b/sn_client/CHANGELOG.md
@@ -1113,12 +1113,48 @@ needed, as they keypair itself contains the Arcs we need.
- Self authentication Example
- Example to demonstrate Storage API
+## v0.81.5 (2023-03-07)
+
+### Refactor
+
+ - reduce churn interval; retry con
+ The nodes are launched every 5s instead of 30s. The client connection
+ will be retried up to 5 times, with 1.5s delay.
+ - disable re-attempts for connect
+
+### 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**
+ - 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))
+
+
## v0.81.4 (2023-03-07)
+
+
+
+
### Other
- reduce churn interval
+### Chore
+
+ - sn_client-0.81.4
+
### Test
- add bench for concurrent client uploads
@@ -1128,8 +1164,8 @@ needed, as they keypair itself contains the Arcs we need.
- - 3 commits contributed to the release.
- - 3 commits were understood as [conventional](https://www.conventionalcommits.org).
+ - 4 commits contributed to the release.
+ - 4 commits were understood as [conventional](https://www.conventionalcommits.org).
- 0 issues like '(#ID)' were seen in commit messages
### Commit Details
@@ -1139,6 +1175,7 @@ needed, as they keypair itself contains the Arcs we need.
view details
* **Uncategorized**
+ - Sn_client-0.81.4 ([`c3db5e8`](https://github.com/maidsafe/safe_network/commit/c3db5e8ceafcbdff8eafb787d1ad8b80bb470849))
- Reduce churn interval ([`9251e0d`](https://github.com/maidsafe/safe_network/commit/9251e0dfa08e9a36c9b55fe1709cdfbc38668cd3))
- Add bench for concurrent client uploads ([`87e59a2`](https://github.com/maidsafe/safe_network/commit/87e59a24bcabd0c710fa0c8871bafe1b68c89b5e))
- Increase concurrent weight of client test ([`5959754`](https://github.com/maidsafe/safe_network/commit/5959754ccb70bbb468d4d01265c6e605e9b821b5))
@@ -1146,6 +1183,8 @@ needed, as they keypair itself contains the Arcs we need.
## v0.81.3 (2023-03-06)
+
+
### Chore
- sn_interface-0.19.7/sn_comms-0.5.1/sn_client-0.81.3/sn_node-0.77.13/sn_cli-0.72.3
diff --git a/sn_client/Cargo.toml b/sn_client/Cargo.toml
index 89e204c159..0d43f49525 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.81.4"
+version = "0.81.5"
[[bench]]
name = "upload_bytes"