diff --git a/internal/flags/flags.go b/internal/flags/flags.go index f63f6a0..ae9879e 100644 --- a/internal/flags/flags.go +++ b/internal/flags/flags.go @@ -7,7 +7,7 @@ import ( "os" ) -const VERSION = "0.1.0" +const VERSION = "0.2.0" type Flags struct { Version bool diff --git a/internal/flags/flags_test.go b/internal/flags/flags_test.go index cc88207..4deb69c 100644 --- a/internal/flags/flags_test.go +++ b/internal/flags/flags_test.go @@ -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", }, }