Skip to content

Commit

Permalink
chore: release version v1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
davidborzek committed Mar 6, 2023
1 parent 4ec3d40 commit a3ad308
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ import (
"github.com/urfave/cli/v2"
)

const (
Version = "1.0"
)

func start(ctx *cli.Context) error {
cfg, err := config.LoadConfig()
if config.IsConfigNotExistsErr(err) {
Expand Down Expand Up @@ -49,7 +53,7 @@ func newApp() *cli.App {
app := cli.NewApp()
app.Name = "spofi"
app.Usage = "Control spotify using rofi."
app.Version = "local"
app.Version = Version
app.Commands = []*cli.Command{
setup.Cmd,
}
Expand Down

0 comments on commit a3ad308

Please sign in to comment.