Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
goshimmer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
iota-imt
goshimmer
Commits
916b8fc5
Unverified
Commit
916b8fc5
authored
4 years ago
by
Wolfgang Welz
Committed by
GitHub
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
CHANGELOG.md
+9
-0
9 additions, 0 deletions
CHANGELOG.md
plugins/autopeering/parameters.go
+1
-1
1 addition, 1 deletion
plugins/autopeering/parameters.go
plugins/banner/plugin.go
+1
-1
1 addition, 1 deletion
plugins/banner/plugin.go
plugins/database/versioning.go
+1
-1
1 addition, 1 deletion
plugins/database/versioning.go
with
12 additions
and
3 deletions
CHANGELOG.md
+
9
−
0
View file @
916b8fc5
# 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
...
...
@@ -5,6 +13,7 @@
*
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:
...
...
This diff is collapsed.
Click to expand it.
plugins/autopeering/parameters.go
+
1
−
1
View file @
916b8fc5
...
...
@@ -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"
)
}
This diff is collapsed.
Click to expand it.
plugins/banner/plugin.go
+
1
−
1
View file @
916b8fc5
...
...
@@ -18,7 +18,7 @@ var (
const
(
// AppVersion version number
AppVersion
=
"v0.2.
3
"
AppVersion
=
"v0.2.
4
"
// AppName app code name
AppName
=
"GoShimmer"
...
...
This diff is collapsed.
Click to expand it.
plugins/database/versioning.go
+
1
−
1
View file @
916b8fc5
...
...
@@ -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
(
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment