Skip to content

Commit

Permalink
Release v0.5.9 (#1284)
Browse files Browse the repository at this point in the history
* version bump

* update changelog
  • Loading branch information
capossele authored May 11, 2021
1 parent 2c4fc76 commit 9369a61
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 3 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
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/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:"[email protected]:15626,5EDH4uY78EA6wrBkHHAVBWBMDt7EcksRq6pjzipoW15B@entryshimmer.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 @@ -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)
)
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 = 28
DBVersion = 29
)

var (
Expand Down

0 comments on commit 9369a61

Please sign in to comment.