From 916b8fc5c4f968f4a3df25d4b858264b5f21982d Mon Sep 17 00:00:00 2001 From: Wolfgang Welz Date: Thu, 3 Sep 2020 13:46:02 +0200 Subject: [PATCH] Bump version (#717) * bump network and database version * v0.2.4 --- CHANGELOG.md | 9 +++++++++ plugins/autopeering/parameters.go | 2 +- plugins/banner/plugin.go | 2 +- plugins/database/versioning.go | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e1caf3f58..2e56179f36 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# v0.2.4 - 2020-09-03 +* Fixes race condition that was preventing the deletion of some entries from missing messages. +* Improves the Tangle-BadgerDB interaction. +* Improved APIs for debug with the addition of the value-tips endpoint. +* Improved autopeering management by adding the ability to specify a given network version. +* Integrates initial support for the dRNG module. +* **Breaking**: bumps network and database versions + # v0.2.3 - 2020-08-11 * Fixes synchronization issue where missing messages were not requested more than once * Fixes node's dashboard explorer crashing or not properly visualizing the payload of a given message @@ -5,6 +13,7 @@ * Adds support for the sync-beacon payload type * Displaying uptime and nodeID * Fixed all linter issues to improve code quality +* **Breaking**: bumps network and database versions # v0.2.2 - 2020-07-27 * Improves message and transaction validation: diff --git a/plugins/autopeering/parameters.go b/plugins/autopeering/parameters.go index 6023755bc6..8b453176bf 100644 --- a/plugins/autopeering/parameters.go +++ b/plugins/autopeering/parameters.go @@ -13,5 +13,5 @@ const ( func init() { flag.StringSlice(CfgEntryNodes, []string{"2PV5487xMw5rasGBXXWeqSi4hLz7r19YBt8Y1TGAsQbj@ressims.iota.cafe:15626"}, "list of trusted entry nodes for auto peering") - flag.Uint32(CfgNetworkVersion, 6, "autopeering network version") + flag.Uint32(CfgNetworkVersion, 7, "autopeering network version") } diff --git a/plugins/banner/plugin.go b/plugins/banner/plugin.go index 1e4bdbe461..244baba21a 100644 --- a/plugins/banner/plugin.go +++ b/plugins/banner/plugin.go @@ -18,7 +18,7 @@ var ( const ( // AppVersion version number - AppVersion = "v0.2.3" + AppVersion = "v0.2.4" // AppName app code name AppName = "GoShimmer" diff --git a/plugins/database/versioning.go b/plugins/database/versioning.go index 71233bb340..dc434ef0cc 100644 --- a/plugins/database/versioning.go +++ b/plugins/database/versioning.go @@ -10,7 +10,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 = 7 + DBVersion = 8 ) var (