Skip to content

Commit

Permalink
Merge pull request #31 from bvieira/fix-gomodule
Browse files Browse the repository at this point in the history
fix: set go module name to be compatible with v2
  • Loading branch information
bvieira authored Jul 31, 2021
2 parents 48f7fc3 + c479f4a commit 02d5e65
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cmd/git-sv/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"reflect"
"strings"

"github.com/bvieira/sv4git/sv"
"github.com/bvieira/sv4git/v2/sv"
"github.com/imdario/mergo"
"github.com/kelseyhightower/envconfig"
"gopkg.in/yaml.v3"
Expand Down
2 changes: 1 addition & 1 deletion cmd/git-sv/config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"reflect"
"testing"

"github.com/bvieira/sv4git/sv"
"github.com/bvieira/sv4git/v2/sv"
)

func Test_merge(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion cmd/git-sv/handlers.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"time"

"github.com/Masterminds/semver/v3"
"github.com/bvieira/sv4git/sv"
"github.com/bvieira/sv4git/v2/sv"
"github.com/urfave/cli/v2"
"gopkg.in/yaml.v3"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/git-sv/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"os"
"path/filepath"

"github.com/bvieira/sv4git/sv"
"github.com/bvieira/sv4git/v2/sv"
"github.com/urfave/cli/v2"
)

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/bvieira/sv4git
module github.com/bvieira/sv4git/v2

go 1.16

Expand Down

0 comments on commit 02d5e65

Please sign in to comment.