Skip to content

Commit

Permalink
fix version in Releases
Browse files Browse the repository at this point in the history
  • Loading branch information
askovpen committed Sep 5, 2024
1 parent d51d367 commit 169a3ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gossiped.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
)

var (
version = "v2.0"
version = "2.0"
commit = "dev"
)

Expand All @@ -35,7 +35,7 @@ func main() {
if len(commit) > 8 {
commit = commit[0:8]
}
config.Version = version[1:] + "-" + commit
config.Version = version + "-" + commit
config.InitVars()
log.Printf("%s started", config.LongPID)
var fn string
Expand Down

0 comments on commit 169a3ba

Please sign in to comment.