Skip to content

Commit

Permalink
fix(version): Update version from 0.3.0 to 0.4.0
Browse files Browse the repository at this point in the history
The version constant was updated in the cli package and corresponding tests were adjusted.
  • Loading branch information
tab committed Nov 1, 2024
1 parent ab102e0 commit ab0a85a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cmd/main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ func TestMainRun(t *testing.T) {
{
name: "Version command",
args: []string{"--version"},
output: "cmt 0.3.0\n",
output: "cmt 0.4.0\n",
},
}

Expand Down
2 changes: 1 addition & 1 deletion internal/cli/cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
)

const VERSION = "0.3.0"
const VERSION = "0.4.0"

func Help() {
fmt.Println("Usage:")
Expand Down
2 changes: 1 addition & 1 deletion internal/cli/cli_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ func TestVersion(t *testing.T) {
}{
{
name: "Version",
output: "cmt 0.3.0\n",
output: "cmt 0.4.0\n",
},
}

Expand Down

0 comments on commit ab0a85a

Please sign in to comment.