From 26f56f88af1c38f1dba8207225bfb767e92e5a20 Mon Sep 17 00:00:00 2001 From: Jeff Widman Date: Fri, 12 Apr 2024 10:23:00 -0700 Subject: [PATCH] Change module path to `v4` per `go` conventions For major versions > 1, the `go` convention is that the module path should have a suffix with the major version. Since the published version is currently `4.4.2`, that means it should be `/v4` More details here: * https://github.com/cheat/cheat/issues/652#issuecomment-1031924526 --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index d70572b..7aa1f9a 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/cheat/cheat +module github.com/cheat/cheat/v4 go 1.19