Skip to content
Snippets Groups Projects
Commit 1e0aad92 authored by Benjamin Bollen's avatar Benjamin Bollen
Browse files

start construction of versioning


Signed-off-by: default avatarBenjamin Bollen <ben@erisindustries.com>
parent 062c3c9c
No related branches found
No related tags found
No related merge requests found
......@@ -16,5 +16,25 @@
package version
import (
"fmt"
)
const VERSION = "0.12.0"
const TENDERMINT_VERSION = "0.6.0"
const (
// Client identifier to advertise over the network
clientIdentifier = "eris-db"
// Major version component of the current release
versionMajor = 0
// Minor version component of the current release
versionMinor = 12
// Patch version component of the current release
versionPatch = 0
)
func GetVersionString() string {
return fmt.Sprintf("%s-%d.%d.%d", clientIdentifier, versionMajor, versionMinor,
versionPatch)
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment