Skip to content

Commit 4847094

Browse files
committed
chore: v3.0.0
1 parent a6f3a74 commit 4847094

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

.commitlog.release

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v2.0.7
1+
v3.0.0

commands/commitlog.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package commands
22

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

commands/release.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66
"os/exec"
77
"path"
88

9-
"github.com/barelyhuman/commitlog/v2/lib"
10-
"github.com/barelyhuman/commitlog/v2/pkg"
9+
"github.com/barelyhuman/commitlog/v3/lib"
10+
"github.com/barelyhuman/commitlog/v3/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

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ package main
3333
import (
3434
"log"
3535

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

3939
func main() {

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/barelyhuman/commitlog/v2
1+
module github.com/barelyhuman/commitlog/v3
22

33
go 1.16
44

main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"os"
77
"time"
88

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

pkg/generator.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"regexp"
99
"strings"
1010

11-
"github.com/barelyhuman/commitlog/v2/lib"
11+
"github.com/barelyhuman/commitlog/v3/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)