Skip to content

Commit

Permalink
Merge branch 'testnet-candidate' into testnet
Browse files Browse the repository at this point in the history
# Conflicts:
#	global/version.go
  • Loading branch information
lunfardo314 committed Feb 7, 2025
2 parents 825095b + 67e0696 commit ecaf45c
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions global/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,19 @@ import (
"runtime/debug"
)

// Version is the version of the Proxima node
const (
Version = "v0.1.4.1-testnet"
// Version has the following structure: A.B.C[-<label>]
// A is major version. It is 0 until beta. All alpha testnets are '0.n...'. Beta starts at 1
// B is minor version. Change of the version means breaking change
// C is subversion. Change usually means non-breaking change
// <label is arbitrary label>
Version = "0.4.2-testnet"
bannerTemplate = "starting Proxima node version %s, commit hash: %s, commit time: %s"
)

var (
CommitHash = "N/A"
CommitTime = "N?A"
CommitTime = "N/A"
)

func init() {
Expand Down

0 comments on commit ecaf45c

Please sign in to comment.