Skip to content

Commit

Permalink
Bump version (#717)
Browse files Browse the repository at this point in the history
* bump network and database version

* v0.2.4
  • Loading branch information
Wollac authored Sep 3, 2020
1 parent f3a9327 commit 916b8fc
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,19 @@
# 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
* Improves Grafana local dashboard:
* 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:
Expand Down
2 changes: 1 addition & 1 deletion plugins/autopeering/parameters.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
2 changes: 1 addition & 1 deletion plugins/banner/plugin.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ var (

const (
// AppVersion version number
AppVersion = "v0.2.3"
AppVersion = "v0.2.4"

// AppName app code name
AppName = "GoShimmer"
Expand Down
2 changes: 1 addition & 1 deletion plugins/database/versioning.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
Expand Down

0 comments on commit 916b8fc

Please sign in to comment.