Skip to content

Commit e4660ac

Browse files
authored
Merge pull request #2423 from iotaledger/develop
2 parents d4aef1c + 473f249 commit e4660ac

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# v0.9.8 - 2022-09-06
2+
3+
> This release disables the Warpsync plugin, which is still experimental.
4+
5+
- Disable Warpsync by default (#2421)
6+
17
# v0.9.7 - 2022-09-05
28

39
> This release introduces major bugfixes to the networking and the faucet.

plugins/autopeering/discovery/parameters.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import "github.com/iotaledger/goshimmer/plugins/config"
55
// ParametersDefinitionDiscovery contains the definition of configuration parameters used by the autopeering peer discovery.
66
type ParametersDefinitionDiscovery struct {
77
// NetworkVersion defines the config flag of the network version.
8-
NetworkVersion uint32 `default:"65" usage:"autopeering network version"`
8+
NetworkVersion uint32 `default:"66" usage:"autopeering network version"`
99

1010
// EntryNodes defines the config flag of the entry nodes.
1111
EntryNodes []string `default:"2PV5487xMw5rasGBXXWeqSi4hLz7r19YBt8Y1TGAsQbj@analysisentry-01.devnet.shimmer.iota.cafe:15626,5EDH4uY78EA6wrBkHHAVBWBMDt7EcksRq6pjzipoW15B@entry-0.devnet.tanglebay.com:14646,CAB87iQZR6BjBrCgEBupQJ4gpEBgvGKKv3uuGVRBKb4n@entry-1.devnet.tanglebay.com:14646" usage:"list of trusted entry nodes for auto peering"`

plugins/banner/plugin.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ var (
1515
Plugin = node.NewPlugin(PluginName, nil, node.Enabled, configure, run)
1616

1717
// AppVersion version number
18-
AppVersion = "v0.9.7"
18+
AppVersion = "v0.9.8"
1919
// SimplifiedAppVersion is the version number without commit hash
2020
SimplifiedAppVersion = simplifiedVersion(AppVersion)
2121
)

plugins/database/versioning.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
const (
1212
// DBVersion defines the version of the database schema this version of GoShimmer supports.
1313
// Every time there's a breaking change regarding the stored data, this version flag should be adjusted.
14-
DBVersion = 65
14+
DBVersion = 66
1515
)
1616

1717
var (

plugins/warpsync/plugin.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ type dependencies struct {
3939
}
4040

4141
func init() {
42-
Plugin = node.NewPlugin(PluginName, deps, node.Enabled, configure, run)
42+
Plugin = node.NewPlugin(PluginName, deps, node.Disabled, configure, run)
4343

4444
Plugin.Events.Init.Hook(event.NewClosure(func(event *node.InitEvent) {
4545
if err := event.Container.Provide(func(t *tangleold.Tangle, p2pManager *p2p.Manager) *warpsync.Manager {

0 commit comments

Comments
 (0)