Skip to content

Commit

Permalink
fix: version value 0.1.0 to 0.0.0 (hadenlabs#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
luismayta committed Feb 13, 2022
1 parent 9e4e779 commit 1dee557
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
)

// current version
const dev = "0.1.0"
const dev = "0.0.0"

// Provisioned by ldflags
var (
Expand All @@ -22,7 +22,7 @@ func init() {
if version == "" {
version = dev
}
if version == "v0.1.0-" { // building in a directory which is not a git repository
if version == "v0.0.0-" { // building in a directory which is not a git repository
version = dev
}
if commitHash == "" {
Expand Down

0 comments on commit 1dee557

Please sign in to comment.