Skip to content

Commit

Permalink
version 1.3.0-rc
Browse files Browse the repository at this point in the history
  • Loading branch information
Motok1 committed Jun 9, 2024
1 parent 5ab4826 commit 22447c8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions internal/pkg/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ package version
import "fmt"

const MAJOR uint = 1
const MINOR uint = 2
const PATCH uint = 1
const MINOR uint = 3
const PATCH uint = 0

func Version() string {
return fmt.Sprintf("%d.%d.%d", MAJOR, MINOR, PATCH)
return fmt.Sprintf("%d.%d.%d-rc", MAJOR, MINOR, PATCH)
}

0 comments on commit 22447c8

Please sign in to comment.