Skip to content

Commit

Permalink
feat!: prepare for v2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
caarlos0 committed Jun 1, 2024
1 parent adf3c2a commit 710f53a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
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/caarlos0/svu
module github.com/caarlos0/svu/v2

go 1.22

Expand Down
2 changes: 1 addition & 1 deletion internal/svu/svu.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"strings"

"github.com/Masterminds/semver/v3"
"github.com/caarlos0/svu/internal/git"
"github.com/caarlos0/svu/v2/internal/git"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"runtime/debug"

"github.com/alecthomas/kingpin/v2"
"github.com/caarlos0/svu/internal/svu"
"github.com/caarlos0/svu/v2/internal/svu"
)

var (
Expand Down
4 changes: 2 additions & 2 deletions pkg/svu/svu.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package svu

import (
"github.com/caarlos0/svu/internal/git"
"github.com/caarlos0/svu/internal/svu"
"github.com/caarlos0/svu/v2/internal/git"
"github.com/caarlos0/svu/v2/internal/svu"
)

type TagMode string
Expand Down

0 comments on commit 710f53a

Please sign in to comment.