Skip to content

Commit 2133a18

Browse files
committed
fix: semver
1 parent 18ffe2f commit 2133a18

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

commands/commitlog.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package commands
22

33
import (
4-
"github.com/barelyhuman/commitlog/pkg"
4+
"github.com/barelyhuman/commitlog/v2/pkg"
55
"github.com/urfave/cli/v2"
66
)
77

commands/release.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66
"os/exec"
77
"path"
88

9-
"github.com/barelyhuman/commitlog/lib"
10-
"github.com/barelyhuman/commitlog/pkg"
9+
"github.com/barelyhuman/commitlog/v2/lib"
10+
"github.com/barelyhuman/commitlog/v2/pkg"
1111
"github.com/go-git/go-git/v5"
1212
"github.com/go-git/go-git/v5/plumbing"
1313
"github.com/urfave/cli/v2"

docs/api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ package main
3333
import (
3434
"log"
3535

36-
"github.com/barelyhuman/commitlog/pkg"
36+
"github.com/barelyhuman/commitlog/v2/pkg"
3737
)
3838

3939
func main() {

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/barelyhuman/commitlog
1+
module github.com/barelyhuman/commitlog/v2
22

33
go 1.16
44

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"os"
77
"time"
88

9-
"github.com/barelyhuman/commitlog/commands"
9+
"github.com/barelyhuman/commitlog/v2/commands"
1010
"github.com/urfave/cli/v2"
1111
)
1212

pkg/generator.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"regexp"
99
"strings"
1010

11-
"github.com/barelyhuman/commitlog/lib"
11+
"github.com/barelyhuman/commitlog/v2/lib"
1212
"github.com/go-git/go-git/v5"
1313
"github.com/go-git/go-git/v5/plumbing/object"
1414
)

0 commit comments

Comments
 (0)