Skip to content

Commit

Permalink
chore(flags): update version to 0.2.0
Browse files Browse the repository at this point in the history
Updated the VERSION constant in flags.go and adjusted the expected output in flags_test.go to reflect the new version.
  • Loading branch information
tab committed Oct 13, 2024
1 parent 81261dd commit 5e3ac73
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion internal/flags/flags.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"os"
)

const VERSION = "0.1.0"
const VERSION = "0.2.0"

type Flags struct {
Version bool
Expand Down
2 changes: 1 addition & 1 deletion internal/flags/flags_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ func TestPrintVersion(t *testing.T) {
{
name: "Print version",
args: []string{"cmd", "--version"},
expected: "cmt 0.1.0\n",
expected: "cmt 0.2.0\n",
},
}

Expand Down

0 comments on commit 5e3ac73

Please sign in to comment.