Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

---

## [Unreleased]
## [v0.0.4] - 2025-09-12

#### Changed

Expand Down Expand Up @@ -58,3 +58,4 @@
## [v0.0.1] - 2025-07-28

- **Initial Release**: Initial release of the project

3 changes: 3 additions & 0 deletions dev/cmd/test.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ var testCmd = &cobra.Command{
color.Red("Failed to run tests: %v", err)
return
}
// This return is intentionally placed here to prevent executing the test command
// when the help flag is used. The first return handles the error case, while
// this one handles the successful help command case.
return
}

Expand Down
2 changes: 1 addition & 1 deletion internal/metadata.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package internal

var Version = "0.0.3"
var Version = "0.0.4"

type AppMetadata struct {
Version string
Expand Down