Skip to content

Commit

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

* update changelog
  • Loading branch information
capossele authored May 7, 2021
1 parent 6fe23f9 commit 44b2424
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 3 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
# v0.5.8 - 2021-05-07
* Integrate FPC with the X-Team committee
* Enable finality via approval weight
* Add Tangle Time
* Add sync status monitoring
* Add activity plugin
* Add manual peering support
* Add markers info to message view
* Remove moving average for cMana
* Replace epochs with weight provider using Tangle Time
* Fix marker issues
* Fix sync issues
* Disable past-cone check when booking transactions
* Improve integration tests
* Refactor error handling
* Update snapshot
* Update JS dependencies
* Update to latest hive.go
* Update documentation
* **Breaking**: bumps network and database versions

# v0.5.7 - 2021-04-23
* Add approval weight manager (soft launch)
* Add epochs
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:"25" usage:"autopeering network version"`
NetworkVersion int `default:"26" 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.7"
AppVersion = "v0.5.8"
// 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 = 27
DBVersion = 28
)

var (
Expand Down

0 comments on commit 44b2424

Please sign in to comment.