Skip to content

Commit

Permalink
chore: Change import path to gabe565.com/changelog-generator
Browse files Browse the repository at this point in the history
  • Loading branch information
gabe565 committed Nov 15, 2024
1 parent 27d0c65 commit 4698f0d
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions cmd/cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"errors"
"io"

"github.com/gabe565/changelog-generator/internal/config"
"github.com/gabe565/changelog-generator/internal/git"
"gabe565.com/changelog-generator/internal/config"
"gabe565.com/changelog-generator/internal/git"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/cmd_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"testing"
"time"

"github.com/gabe565/changelog-generator/internal/config"
"gabe565.com/changelog-generator/internal/config"
"github.com/go-git/go-git/v5"
"github.com/go-git/go-git/v5/plumbing"
"github.com/go-git/go-git/v5/plumbing/object"
Expand Down
2 changes: 1 addition & 1 deletion cmd/completion.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"errors"
"fmt"

"github.com/gabe565/changelog-generator/internal/config"
"gabe565.com/changelog-generator/internal/config"
"github.com/spf13/cobra"
)

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/gabe565/changelog-generator
module gabe565.com/changelog-generator

go 1.23.3

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

"github.com/gabe565/changelog-generator/internal/util"
"gabe565.com/changelog-generator/internal/util"
"github.com/go-git/go-git/v5/plumbing/object"
)

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

"github.com/gabe565/changelog-generator/internal/util"
"gabe565.com/changelog-generator/internal/util"
"github.com/go-git/go-git/v5/plumbing/object"
)

Expand Down
2 changes: 1 addition & 1 deletion internal/generate/completions/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"path/filepath"
"time"

"github.com/gabe565/changelog-generator/cmd"
"gabe565.com/changelog-generator/cmd"
flag "github.com/spf13/pflag"
)

Expand Down
2 changes: 1 addition & 1 deletion internal/generate/docs/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"log"
"os"

"github.com/gabe565/changelog-generator/cmd"
"gabe565.com/changelog-generator/cmd"
"github.com/spf13/cobra/doc"
)

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

"github.com/gabe565/changelog-generator/cmd"
"gabe565.com/changelog-generator/cmd"
"github.com/spf13/cobra/doc"
flag "github.com/spf13/pflag"
)
Expand Down
2 changes: 1 addition & 1 deletion internal/git/git.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"io"
"slices"

"github.com/gabe565/changelog-generator/internal/config"
"gabe565.com/changelog-generator/internal/config"
"github.com/go-git/go-git/v5"
"github.com/go-git/go-git/v5/plumbing"
"github.com/go-git/go-git/v5/plumbing/object"
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"os"

"github.com/gabe565/changelog-generator/cmd"
"gabe565.com/changelog-generator/cmd"
)

//nolint:gochecknoglobals
Expand Down

0 comments on commit 4698f0d

Please sign in to comment.