From c2b1c89ef3086e6e00f31efb4bc625a1d4283b89 Mon Sep 17 00:00:00 2001 From: Zlatko Bratkovic Date: Thu, 8 Aug 2024 18:54:22 +0200 Subject: [PATCH] MAJOR: increase version to v5 to be perfectly compatible with proxy requirements --- aspell/aspell.go | 2 +- aspell_test.go | 2 +- check.go | 2 +- go.mod | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aspell/aspell.go b/aspell/aspell.go index 2af4e6f..88fe48f 100644 --- a/aspell/aspell.go +++ b/aspell/aspell.go @@ -9,7 +9,7 @@ import ( "sort" "strings" - "github.com/haproxytech/check-commit/v4/match" + "github.com/haproxytech/check-commit/v5/match" "github.com/fatih/camelcase" ) diff --git a/aspell_test.go b/aspell_test.go index 9e92709..e609ff9 100644 --- a/aspell_test.go +++ b/aspell_test.go @@ -6,7 +6,7 @@ import ( "os" "testing" - "github.com/haproxytech/check-commit/v4/aspell" + "github.com/haproxytech/check-commit/v5/aspell" ) func Test_Aspell(t *testing.T) { diff --git a/check.go b/check.go index ab3620e..463985e 100644 --- a/check.go +++ b/check.go @@ -16,7 +16,7 @@ import ( "unicode" "unicode/utf8" - "github.com/haproxytech/check-commit/v4/aspell" + "github.com/haproxytech/check-commit/v5/aspell" "github.com/google/go-github/v56/github" diff --git a/go.mod b/go.mod index 2c6c453..ecd2363 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/haproxytech/check-commit/v4 +module github.com/haproxytech/check-commit/v5 go 1.22