Skip to content

Commit

Permalink
Release v7.0.2-sunflower
Browse files Browse the repository at this point in the history
  • Loading branch information
jyap808 committed Mar 26, 2024
1 parent 29a4ef4 commit 28f28bd
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions params/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ import (
)

const (
VersionMajor = 7 // Major version component of the current release
VersionMinor = 0 // Minor version component of the current release
VersionPatch = 2 // Patch version component of the current release
VersionMeta = "develop" // Version metadata to append to the version string
VersionMajor = 7 // Major version component of the current release
VersionMinor = 0 // Minor version component of the current release
VersionPatch = 2 // Patch version component of the current release
VersionMeta = "sunflower" // Version metadata to append to the version string
)

// Version holds the textual version string.
Expand All @@ -43,7 +43,8 @@ var VersionWithMeta = func() string {

// ArchiveVersion holds the textual version string used for Gubiq archives.
// e.g. "1.8.11-dea1ce05" for stable releases, or
// "1.8.13-unstable-21c059b6" for unstable releases
//
// "1.8.13-unstable-21c059b6" for unstable releases
func ArchiveVersion(gitCommit string) string {
vsn := Version
if VersionMeta != "stable" {
Expand Down

0 comments on commit 28f28bd

Please sign in to comment.