Skip to content

Commit

Permalink
Set version meta to empty string (#1159)
Browse files Browse the repository at this point in the history
  • Loading branch information
Yashk767 authored Oct 25, 2023
1 parent 768f265 commit 7dbcc88
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions core/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ package core
import "fmt"

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

// Version holds the textual version string.
Expand Down

0 comments on commit 7dbcc88

Please sign in to comment.