Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v0.9.8 #2423

Merged
merged 2 commits into from
Sep 6, 2022
Merged

v0.9.8 #2423

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# v0.9.8 - 2022-09-06

> This release disables the Warpsync plugin, which is still experimental.

- Disable Warpsync by default (#2421)

# v0.9.7 - 2022-09-05

> This release introduces major bugfixes to the networking and the faucet.
Expand Down
2 changes: 1 addition & 1 deletion plugins/autopeering/discovery/parameters.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import "github.com/iotaledger/goshimmer/plugins/config"
// ParametersDefinitionDiscovery contains the definition of configuration parameters used by the autopeering peer discovery.
type ParametersDefinitionDiscovery struct {
// NetworkVersion defines the config flag of the network version.
NetworkVersion uint32 `default:"65" usage:"autopeering network version"`
NetworkVersion uint32 `default:"66" usage:"autopeering network version"`

// EntryNodes defines the config flag of the entry nodes.
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"`
Expand Down
2 changes: 1 addition & 1 deletion plugins/banner/plugin.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ var (
Plugin = node.NewPlugin(PluginName, nil, node.Enabled, configure, run)

// AppVersion version number
AppVersion = "v0.9.7"
AppVersion = "v0.9.8"
// SimplifiedAppVersion is the version number without commit hash
SimplifiedAppVersion = simplifiedVersion(AppVersion)
)
Expand Down
2 changes: 1 addition & 1 deletion plugins/database/versioning.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
const (
// DBVersion defines the version of the database schema this version of GoShimmer supports.
// Every time there's a breaking change regarding the stored data, this version flag should be adjusted.
DBVersion = 65
DBVersion = 66
)

var (
Expand Down
2 changes: 1 addition & 1 deletion plugins/warpsync/plugin.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ type dependencies struct {
}

func init() {
Plugin = node.NewPlugin(PluginName, deps, node.Enabled, configure, run)
Plugin = node.NewPlugin(PluginName, deps, node.Disabled, configure, run)

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