diff --git a/aspell/aspell.go b/aspell/aspell.go index dbeaefa..2af4e6f 100644 --- a/aspell/aspell.go +++ b/aspell/aspell.go @@ -9,7 +9,7 @@ import ( "sort" "strings" - "github.com/haproxytech/check-commit/match" + "github.com/haproxytech/check-commit/v4/match" "github.com/fatih/camelcase" ) diff --git a/aspell_test.go b/aspell_test.go index dfc2d38..9e92709 100644 --- a/aspell_test.go +++ b/aspell_test.go @@ -6,7 +6,7 @@ import ( "os" "testing" - "github.com/haproxytech/check-commit/aspell" + "github.com/haproxytech/check-commit/v4/aspell" ) func Test_Aspell(t *testing.T) { diff --git a/check.go b/check.go index 100f7af..ab3620e 100644 --- a/check.go +++ b/check.go @@ -16,7 +16,7 @@ import ( "unicode" "unicode/utf8" - "github.com/haproxytech/check-commit/aspell" + "github.com/haproxytech/check-commit/v4/aspell" "github.com/google/go-github/v56/github" diff --git a/go.mod b/go.mod index a0b9295..2c6c453 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/haproxytech/check-commit +module github.com/haproxytech/check-commit/v4 go 1.22