From 6215ed147b476835d1efde11cc9ec93135c0489f Mon Sep 17 00:00:00 2001 From: SecretSheppy <62794249+SecretSheppy@users.noreply.github.com> Date: Wed, 29 Apr 2026 12:32:42 +0100 Subject: [PATCH 1/2] refactor: moved main file to shorten install command --- README.md | 2 +- cmd/marv/main.go => main.go | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename cmd/marv/main.go => main.go (100%) diff --git a/README.md b/README.md index 58a5766..db7820f 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ A list of mutation testing frameworks that either are currently supported or wil Marv can be installed with the `go` tool. To use the installed executable, add the `GOPATH` environment variable to your system path. For more information run `go help install`. ``` -go install github.com/SecretSheppy/marv/cmd/marv@latest +go install github.com/SecretSheppy/marv@latest ``` ### Build from source diff --git a/cmd/marv/main.go b/main.go similarity index 100% rename from cmd/marv/main.go rename to main.go From c2eb9986100ccecc2c875fafda62374265ca1d5a Mon Sep 17 00:00:00 2001 From: SecretSheppy <62794249+SecretSheppy@users.noreply.github.com> Date: Wed, 29 Apr 2026 12:32:56 +0100 Subject: [PATCH 2/2] chore: bump version number --- internal/marvinfo/marvinfo.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/marvinfo/marvinfo.go b/internal/marvinfo/marvinfo.go index 0157191..6b8bfb0 100644 --- a/internal/marvinfo/marvinfo.go +++ b/internal/marvinfo/marvinfo.go @@ -1,5 +1,5 @@ package marvinfo func Version() string { - return "1.2.1" + return "1.2.2" }