diff --git a/CHANGELOG.md b/CHANGELOG.md
index bf92b1e6a..1513562ff 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,6 @@
# Kubo Changelogs
+- [v0.35](docs/changelogs/v0.35.md)
- [v0.34](docs/changelogs/v0.34.md)
- [v0.33](docs/changelogs/v0.33.md)
- [v0.32](docs/changelogs/v0.32.md)
diff --git a/core/node/provider.go b/core/node/provider.go
index 78f0761cc..51b12862b 100644
--- a/core/node/provider.go
+++ b/core/node/provider.go
@@ -26,7 +26,7 @@ func ProviderSys(reprovideInterval time.Duration, acceleratedDHTClient bool) fx.
provider.ReproviderInterval(reprovideInterval),
provider.KeyProvider(keyProvider),
}
- if !acceleratedDHTClient {
+ if !acceleratedDHTClient && reprovideInterval > 0 {
// The estimation kinda suck if you are running with accelerated DHT client,
// given this message is just trying to push people to use the acceleratedDHTClient
// let's not report on through if it's in use
@@ -68,7 +68,7 @@ func ProviderSys(reprovideInterval time.Duration, acceleratedDHTClient bool) fx.
๐๐๐ YOU MAY BE FALLING BEHIND DHT REPROVIDES! ๐๐๐
โ ๏ธ Your system might be struggling to keep up with DHT reprovides!
-This means your content could partially or completely inaccessible on the network.
+This means your content could be partially or completely inaccessible on the network.
We observed that you recently provided %d keys at an average rate of %v per key.
๐ An attempt to estimate your blockstore size timed out after 5 minutes,
@@ -97,7 +97,7 @@ https://github.com/ipfs/kubo/blob/master/docs/config.md#routingaccelerateddhtcli
๐๐๐ YOU ARE FALLING BEHIND DHT REPROVIDES! ๐๐๐
โ ๏ธ Your system is struggling to keep up with DHT reprovides!
-This means your content could partially or completely inaccessible on the network.
+This means your content could be partially or completely inaccessible on the network.
We observed that you recently provided %d keys at an average rate of %v per key.
๐พ Your total CID count is ~%d which would total at %v reprovide process.
diff --git a/docs/changelogs/v0.34.md b/docs/changelogs/v0.34.md
index 670c6244b..22fc5b24a 100644
--- a/docs/changelogs/v0.34.md
+++ b/docs/changelogs/v0.34.md
@@ -1,5 +1,9 @@
# Kubo changelog v0.34
+
+
+This release was brought to you by the [Shipyard](http://ipshipyard.com/) team.
+
- [v0.34.0](#v0340)
- [v0.34.1](#v0341)
diff --git a/docs/changelogs/v0.35.md b/docs/changelogs/v0.35.md
new file mode 100644
index 000000000..7b261ed55
--- /dev/null
+++ b/docs/changelogs/v0.35.md
@@ -0,0 +1,25 @@
+# Kubo changelog v0.35
+
+
+
+This release was brought to you by the [Shipyard](http://ipshipyard.com/) team.
+
+- [v0.35.0](#v0340)
+
+## v0.35.0
+
+- [Overview](#overview)
+- [๐ฆ Highlights](#-highlights)
+ - [๐ฆ๏ธ Important dependency updates](#-important-dependency-updates)
+- [๐ Changelog](#-changelog)
+- [๐จโ๐ฉโ๐งโ๐ฆ Contributors](#-contributors)
+
+### Overview
+
+### ๐ฆ Highlights
+
+#### ๐ฆ๏ธ Important dependency updates
+
+### ๐ Changelog
+
+### ๐จโ๐ฉโ๐งโ๐ฆ Contributors
diff --git a/version.go b/version.go
index eafff69f3..bca3b4238 100644
--- a/version.go
+++ b/version.go
@@ -11,7 +11,7 @@ import (
var CurrentCommit string
// CurrentVersionNumber is the current application's version literal.
-const CurrentVersionNumber = "0.34.1"
+const CurrentVersionNumber = "0.35.0-dev"
const ApiVersion = "/kubo/" + CurrentVersionNumber + "/" //nolint