From 5e7a92123d6692928ad5efe77bae90228f3317c9 Mon Sep 17 00:00:00 2001 From: Marco Aurelio Caldas Miranda <17923899+macmiranda@users.noreply.github.com> Date: Tue, 30 Apr 2024 17:45:43 +0200 Subject: [PATCH] Update go.mod (#10) --- cmd/root.go | 6 +++--- go.mod | 2 +- main.go | 2 +- pkg/helm/models.go | 2 +- pkg/helm/releases.go | 2 +- pkg/output/markdown.go | 2 +- pkg/output/utils.go | 4 ++-- 7 files changed, 10 insertions(+), 10 deletions(-) diff --git a/cmd/root.go b/cmd/root.go index ad1c15b..11ac1b1 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -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 diff --git a/go.mod b/go.mod index 60caaac..1b21651 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/mloiseleur/helm-changelog +module github.com/traefik/helm-changelog go 1.21 diff --git a/main.go b/main.go index 956cf3b..cd7dd12 100644 --- a/main.go +++ b/main.go @@ -1,6 +1,6 @@ package main -import "github.com/mloiseleur/helm-changelog/cmd" +import "github.com/traefik/helm-changelog/cmd" func main() { cmd.Execute() diff --git a/pkg/helm/models.go b/pkg/helm/models.go index bc51cfb..83baba7 100644 --- a/pkg/helm/models.go +++ b/pkg/helm/models.go @@ -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" ) diff --git a/pkg/helm/releases.go b/pkg/helm/releases.go index 5e6dcaa..b54eb4d 100644 --- a/pkg/helm/releases.go +++ b/pkg/helm/releases.go @@ -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 { diff --git a/pkg/output/markdown.go b/pkg/output/markdown.go index 7c06327..905f85d 100644 --- a/pkg/output/markdown.go +++ b/pkg/output/markdown.go @@ -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 diff --git a/pkg/output/utils.go b/pkg/output/utils.go index 0180acd..e4a454c 100644 --- a/pkg/output/utils.go +++ b/pkg/output/utils.go @@ -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 {