Skip to content

Commit

Permalink
chore: v3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
barelyhuman committed Aug 30, 2023
1 parent a6f3a74 commit 4847094
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .commitlog.release
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v2.0.7
v3.0.0
2 changes: 1 addition & 1 deletion commands/commitlog.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package commands

import (
"github.com/barelyhuman/commitlog/v2/pkg"
"github.com/barelyhuman/commitlog/v3/pkg"
"github.com/urfave/cli/v2"
)

Expand Down
4 changes: 2 additions & 2 deletions commands/release.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"os/exec"
"path"

"github.com/barelyhuman/commitlog/v2/lib"
"github.com/barelyhuman/commitlog/v2/pkg"
"github.com/barelyhuman/commitlog/v3/lib"
"github.com/barelyhuman/commitlog/v3/pkg"
"github.com/go-git/go-git/v5"
"github.com/go-git/go-git/v5/plumbing"
"github.com/urfave/cli/v2"
Expand Down
2 changes: 1 addition & 1 deletion docs/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ package main
import (
"log"

"github.com/barelyhuman/commitlog/v2/pkg"
"github.com/barelyhuman/commitlog/v3/pkg"
)

func main() {
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/barelyhuman/commitlog/v2
module github.com/barelyhuman/commitlog/v3

go 1.16

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 (
"os"
"time"

"github.com/barelyhuman/commitlog/v2/commands"
"github.com/barelyhuman/commitlog/v3/commands"
"github.com/urfave/cli/v2"
)

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

"github.com/barelyhuman/commitlog/v2/lib"
"github.com/barelyhuman/commitlog/v3/lib"
"github.com/go-git/go-git/v5"
"github.com/go-git/go-git/v5/plumbing/object"
)
Expand Down

0 comments on commit 4847094

Please sign in to comment.