Skip to content
Snippets Groups Projects
Unverified Commit 916b8fc5 authored by Wolfgang Welz's avatar Wolfgang Welz Committed by GitHub
Browse files

Bump version (#717)

* bump network and database version

* v0.2.4
parent f3a9327c
No related branches found
No related tags found
No related merge requests found
# 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 # v0.2.3 - 2020-08-11
* Fixes synchronization issue where missing messages were not requested more than once * 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 * Fixes node's dashboard explorer crashing or not properly visualizing the payload of a given message
...@@ -5,6 +13,7 @@ ...@@ -5,6 +13,7 @@
* Adds support for the sync-beacon payload type * Adds support for the sync-beacon payload type
* Displaying uptime and nodeID * Displaying uptime and nodeID
* Fixed all linter issues to improve code quality * Fixed all linter issues to improve code quality
* **Breaking**: bumps network and database versions
# v0.2.2 - 2020-07-27 # v0.2.2 - 2020-07-27
* Improves message and transaction validation: * Improves message and transaction validation:
......
...@@ -13,5 +13,5 @@ const ( ...@@ -13,5 +13,5 @@ const (
func init() { func init() {
flag.StringSlice(CfgEntryNodes, []string{"2PV5487xMw5rasGBXXWeqSi4hLz7r19YBt8Y1TGAsQbj@ressims.iota.cafe:15626"}, "list of trusted entry nodes for auto peering") 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")
} }
...@@ -18,7 +18,7 @@ var ( ...@@ -18,7 +18,7 @@ var (
const ( const (
// AppVersion version number // AppVersion version number
AppVersion = "v0.2.3" AppVersion = "v0.2.4"
// AppName app code name // AppName app code name
AppName = "GoShimmer" AppName = "GoShimmer"
......
...@@ -10,7 +10,7 @@ import ( ...@@ -10,7 +10,7 @@ import (
const ( const (
// DBVersion defines the version of the database schema this version of GoShimmer supports. // 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. // Every time there's a breaking change regarding the stored data, this version flag should be adjusted.
DBVersion = 7 DBVersion = 8
) )
var ( var (
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment