Skip to content

Commit

Permalink
Replace all references of forked repo
Browse files Browse the repository at this point in the history
  • Loading branch information
macmiranda committed Apr 30, 2024
1 parent d4db345 commit 7393bf1
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ import (
"path/filepath"
"strings"

"github.com/mloiseleur/helm-changelog/pkg/git"
"github.com/mloiseleur/helm-changelog/pkg/helm"
"github.com/mloiseleur/helm-changelog/pkg/output"
"github.com/sirupsen/logrus"
"github.com/spf13/cobra"
"github.com/traefik/helm-changelog/pkg/git"
"github.com/traefik/helm-changelog/pkg/helm"
"github.com/traefik/helm-changelog/pkg/output"
)

var changelogFilename string
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package main

import "github.com/mloiseleur/helm-changelog/cmd"
import "github.com/traefik/helm-changelog/cmd"

func main() {
cmd.Execute()
Expand Down
2 changes: 1 addition & 1 deletion pkg/helm/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"io"
"time"

"github.com/mloiseleur/helm-changelog/pkg/git"
"github.com/traefik/helm-changelog/pkg/git"
"gopkg.in/yaml.v3"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/helm/releases.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"path/filepath"
"strings"

"github.com/mloiseleur/helm-changelog/pkg/git"
"github.com/sirupsen/logrus"
"github.com/traefik/helm-changelog/pkg/git"
)

func CreateHelmReleases(log *logrus.Logger, chartFile, chartDir string, g git.Git, commits []git.GitCommit) []*Release {
Expand Down
2 changes: 1 addition & 1 deletion pkg/output/markdown.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (

"github.com/sirupsen/logrus"

"github.com/mloiseleur/helm-changelog/pkg/helm"
"github.com/traefik/helm-changelog/pkg/helm"
)

// Markdown creates a markdown representation of the changelog at the changeLogFilePath path
Expand Down
4 changes: 2 additions & 2 deletions pkg/output/utils.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package output

import (
"github.com/mloiseleur/helm-changelog/pkg/git"
"github.com/mloiseleur/helm-changelog/pkg/helm"
"github.com/traefik/helm-changelog/pkg/git"
"github.com/traefik/helm-changelog/pkg/helm"
)

func reverseReleases(a []*helm.Release) []*helm.Release {
Expand Down

0 comments on commit 7393bf1

Please sign in to comment.