From 9369a618ac47cbd93f37aa66a5dd388cf150e9d1 Mon Sep 17 00:00:00 2001 From: Angelo Capossele Date: Tue, 11 May 2021 11:33:50 +0100 Subject: [PATCH] Release v0.5.9 (#1284) * version bump * update changelog --- CHANGELOG.md | 16 ++++++++++++++++ plugins/autopeering/discovery/parameters.go | 2 +- plugins/banner/plugin.go | 2 +- plugins/database/versioning.go | 2 +- 4 files changed, 19 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 551cfd1fe7..10ecf91a5d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +# v0.5.9 - 2021-05-11 +* Replace sync beacons with Tangle Time +* Fix approval weight manager persistence +* Fix non positive ticker +* Fix marker issues +* Fix solidification issues +* Fix concurrency-related issues +* Improve FPC metrics logging +* Improve clock synchronization handling +* Improve dRNG plugin +* Improve integration tests +* Update JS dependencies +* Update to latest hive.go +* Update documentation +* **Breaking**: bumps network and database versions + # v0.5.8 - 2021-05-07 * Integrate FPC with the X-Team committee * Enable finality via approval weight diff --git a/plugins/autopeering/discovery/parameters.go b/plugins/autopeering/discovery/parameters.go index fd274abf9b..72b87b0da6 100644 --- a/plugins/autopeering/discovery/parameters.go +++ b/plugins/autopeering/discovery/parameters.go @@ -5,7 +5,7 @@ import "github.com/iotaledger/hive.go/configuration" // Parameters contains the configuration parameters used by the message layer. var Parameters = struct { // NetworkVersion defines the config flag of the network version. - NetworkVersion int `default:"26" usage:"autopeering network version"` + NetworkVersion int `default:"27" usage:"autopeering network version"` // EntryNodes defines the config flag of the entry nodes. EntryNodes []string `default:"2PV5487xMw5rasGBXXWeqSi4hLz7r19YBt8Y1TGAsQbj@ressims.iota.cafe:15626,5EDH4uY78EA6wrBkHHAVBWBMDt7EcksRq6pjzipoW15B@entryshimmer.tanglebay.com:14646" usage:"list of trusted entry nodes for auto peering"` diff --git a/plugins/banner/plugin.go b/plugins/banner/plugin.go index dcc13be3fe..a7b355a92e 100644 --- a/plugins/banner/plugin.go +++ b/plugins/banner/plugin.go @@ -17,7 +17,7 @@ var ( once sync.Once // AppVersion version number - AppVersion = "v0.5.8" + AppVersion = "v0.5.9" // SimplifiedAppVersion is the version number without commit hash SimplifiedAppVersion = simplifiedVersion(AppVersion) ) diff --git a/plugins/database/versioning.go b/plugins/database/versioning.go index d53f458176..ad1307d101 100644 --- a/plugins/database/versioning.go +++ b/plugins/database/versioning.go @@ -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 = 28 + DBVersion = 29 ) var (