Skip to content

Commit

Permalink
Release v0.5.4 (iotaledger#1154)
Browse files Browse the repository at this point in the history
* Update changelog

* Version bump
  • Loading branch information
capossele authored Mar 29, 2021
1 parent 65cea0c commit 477e2e9
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 3 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
# v0.5.4 - 2021-03-29
* Add new diagnostic APIs
* Add new docs sections
* Add branch inclusion state check before issuing new transactions
* Refactor the Faucet plugin
* Optimize transaction's past cone check
* Make issued messages pass through the parser filters
* Fix Faucet time usage
* Fix markers issue
* Fix max inputs count check
* Fix nil pointer in diagnostic API
* Update to latest hive.go
* Enhance golangci-lint
* **Breaking**: bumps network and database versions

# v0.5.3 - 2021-03-25
* Added new API endpoints
* Added models navigation through the Dashboard Explorer
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{"[email protected]:15626", "5EDH4uY78EA6wrBkHHAVBWBMDt7EcksRq6pjzipoW15B@entryshimmer.tanglebay.com:14646"}, "list of trusted entry nodes for auto peering")
flag.Int(CfgNetworkVersion, 21, "autopeering network version")
flag.Int(CfgNetworkVersion, 22, "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 @@ -17,7 +17,7 @@ var (
once sync.Once

// AppVersion version number
AppVersion = "v0.5.3"
AppVersion = "v0.5.4"
// 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 = 23
DBVersion = 24
)

var (
Expand Down

0 comments on commit 477e2e9

Please sign in to comment.