Skip to content

Commit

Permalink
Release v7.0.0 (#1169)
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorbot authored Dec 13, 2024
1 parent 5813d56 commit 3c6a7df
Show file tree
Hide file tree
Showing 73 changed files with 151 additions and 148 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [7.0.0] - 2024-12-13

**Note** Creating vintage releases is not supported anymore, please use an older release of `devctl`.

### Added
Expand Down Expand Up @@ -1022,7 +1024,8 @@ Renovate config

- First release.

[Unreleased]: https://github.com/giantswarm/devctl/compare/v6.32.0...HEAD
[Unreleased]: https://github.com/giantswarm/devctl/compare/v7.0.0...HEAD
[7.0.0]: https://github.com/giantswarm/devctl/compare/v6.32.0...v7.0.0
[6.32.0]: https://github.com/giantswarm/devctl/compare/v6.31.0...v6.32.0
[6.31.0]: https://github.com/giantswarm/devctl/compare/v6.30.0...v6.31.0
[6.30.0]: https://github.com/giantswarm/devctl/compare/v6.29.0...v6.30.0
Expand Down
14 changes: 7 additions & 7 deletions cmd/command.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ import (
"github.com/sirupsen/logrus"
"github.com/spf13/cobra"

"github.com/giantswarm/devctl/v6/cmd/completion"
"github.com/giantswarm/devctl/v6/cmd/gen"
"github.com/giantswarm/devctl/v6/cmd/release"
"github.com/giantswarm/devctl/v6/cmd/replace"
"github.com/giantswarm/devctl/v6/cmd/repo"
"github.com/giantswarm/devctl/v6/cmd/version"
"github.com/giantswarm/devctl/v6/pkg/project"
"github.com/giantswarm/devctl/v7/cmd/completion"
"github.com/giantswarm/devctl/v7/cmd/gen"
"github.com/giantswarm/devctl/v7/cmd/release"
"github.com/giantswarm/devctl/v7/cmd/replace"
"github.com/giantswarm/devctl/v7/cmd/repo"
"github.com/giantswarm/devctl/v7/cmd/version"
"github.com/giantswarm/devctl/v7/pkg/project"
)

type Config struct {
Expand Down
4 changes: 2 additions & 2 deletions cmd/gen/ami/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import (
"github.com/giantswarm/micrologger"
"github.com/spf13/cobra"

"github.com/giantswarm/devctl/v6/pkg/gen"
"github.com/giantswarm/devctl/v6/pkg/gen/input/ami"
"github.com/giantswarm/devctl/v7/pkg/gen"
"github.com/giantswarm/devctl/v7/pkg/gen/input/ami"
)

type runner struct {
Expand Down
6 changes: 3 additions & 3 deletions cmd/gen/apptest/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ import (
"github.com/giantswarm/micrologger"
"github.com/spf13/cobra"

"github.com/giantswarm/devctl/v6/pkg/gen"
"github.com/giantswarm/devctl/v6/pkg/gen/input"
"github.com/giantswarm/devctl/v6/pkg/gen/input/apptest"
"github.com/giantswarm/devctl/v7/pkg/gen"
"github.com/giantswarm/devctl/v7/pkg/gen/input"
"github.com/giantswarm/devctl/v7/pkg/gen/input/apptest"
)

type runner struct {
Expand Down
12 changes: 6 additions & 6 deletions cmd/gen/command.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ import (
"github.com/giantswarm/micrologger"
"github.com/spf13/cobra"

"github.com/giantswarm/devctl/v6/cmd/gen/ami"
"github.com/giantswarm/devctl/v6/cmd/gen/apptest"
"github.com/giantswarm/devctl/v6/cmd/gen/dependabot"
"github.com/giantswarm/devctl/v6/cmd/gen/makefile"
"github.com/giantswarm/devctl/v6/cmd/gen/renovate"
"github.com/giantswarm/devctl/v6/cmd/gen/workflows"
"github.com/giantswarm/devctl/v7/cmd/gen/ami"
"github.com/giantswarm/devctl/v7/cmd/gen/apptest"
"github.com/giantswarm/devctl/v7/cmd/gen/dependabot"
"github.com/giantswarm/devctl/v7/cmd/gen/makefile"
"github.com/giantswarm/devctl/v7/cmd/gen/renovate"
"github.com/giantswarm/devctl/v7/cmd/gen/workflows"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion cmd/gen/dependabot/flag.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"github.com/giantswarm/microerror"
"github.com/spf13/cobra"

"github.com/giantswarm/devctl/v6/pkg/gen"
"github.com/giantswarm/devctl/v7/pkg/gen"
)

const (
Expand Down
6 changes: 3 additions & 3 deletions cmd/gen/dependabot/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ import (
"github.com/giantswarm/micrologger"
"github.com/spf13/cobra"

"github.com/giantswarm/devctl/v6/pkg/gen"
"github.com/giantswarm/devctl/v6/pkg/gen/input"
"github.com/giantswarm/devctl/v6/pkg/gen/input/dependabot"
"github.com/giantswarm/devctl/v7/pkg/gen"
"github.com/giantswarm/devctl/v7/pkg/gen/input"
"github.com/giantswarm/devctl/v7/pkg/gen/input/dependabot"
)

type runner struct {
Expand Down
2 changes: 1 addition & 1 deletion cmd/gen/makefile/flag.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"github.com/giantswarm/microerror"
"github.com/spf13/cobra"

"github.com/giantswarm/devctl/v6/pkg/gen"
"github.com/giantswarm/devctl/v7/pkg/gen"
)

const (
Expand Down
6 changes: 3 additions & 3 deletions cmd/gen/makefile/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ import (
"github.com/giantswarm/micrologger"
"github.com/spf13/cobra"

"github.com/giantswarm/devctl/v6/pkg/gen"
"github.com/giantswarm/devctl/v6/pkg/gen/input"
"github.com/giantswarm/devctl/v6/pkg/gen/input/makefile"
"github.com/giantswarm/devctl/v7/pkg/gen"
"github.com/giantswarm/devctl/v7/pkg/gen/input"
"github.com/giantswarm/devctl/v7/pkg/gen/input/makefile"
)

type runner struct {
Expand Down
6 changes: 3 additions & 3 deletions cmd/gen/renovate/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ import (
"github.com/giantswarm/micrologger"
"github.com/spf13/cobra"

"github.com/giantswarm/devctl/v6/pkg/gen"
"github.com/giantswarm/devctl/v6/pkg/gen/input"
"github.com/giantswarm/devctl/v6/pkg/gen/input/renovate"
"github.com/giantswarm/devctl/v7/pkg/gen"
"github.com/giantswarm/devctl/v7/pkg/gen/input"
"github.com/giantswarm/devctl/v7/pkg/gen/input/renovate"
)

type runner struct {
Expand Down
2 changes: 1 addition & 1 deletion cmd/gen/workflows/flag.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"github.com/giantswarm/microerror"
"github.com/spf13/cobra"

"github.com/giantswarm/devctl/v6/pkg/gen"
"github.com/giantswarm/devctl/v7/pkg/gen"
)

const (
Expand Down
6 changes: 3 additions & 3 deletions cmd/gen/workflows/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ import (
"github.com/giantswarm/micrologger"
"github.com/spf13/cobra"

"github.com/giantswarm/devctl/v6/pkg/gen"
"github.com/giantswarm/devctl/v6/pkg/gen/input"
"github.com/giantswarm/devctl/v6/pkg/gen/input/workflows"
"github.com/giantswarm/devctl/v7/pkg/gen"
"github.com/giantswarm/devctl/v7/pkg/gen/input"
"github.com/giantswarm/devctl/v7/pkg/gen/input/workflows"
)

type runner struct {
Expand Down
2 changes: 1 addition & 1 deletion cmd/release/archive/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"github.com/giantswarm/micrologger"
"github.com/spf13/cobra"

"github.com/giantswarm/devctl/v6/pkg/release"
"github.com/giantswarm/devctl/v7/pkg/release"
)

type runner struct {
Expand Down
4 changes: 2 additions & 2 deletions cmd/release/command.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import (
"github.com/giantswarm/micrologger"
"github.com/spf13/cobra"

"github.com/giantswarm/devctl/v6/cmd/release/archive"
"github.com/giantswarm/devctl/v6/cmd/release/create"
"github.com/giantswarm/devctl/v7/cmd/release/archive"
"github.com/giantswarm/devctl/v7/cmd/release/create"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion cmd/release/create/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"github.com/giantswarm/micrologger"
"github.com/spf13/cobra"

"github.com/giantswarm/devctl/v6/pkg/release"
"github.com/giantswarm/devctl/v7/pkg/release"
)

type runner struct {
Expand Down
2 changes: 1 addition & 1 deletion cmd/repo/command.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"github.com/sirupsen/logrus"
"github.com/spf13/cobra"

"github.com/giantswarm/devctl/v6/cmd/repo/setup"
"github.com/giantswarm/devctl/v7/cmd/repo/setup"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion cmd/repo/setup/ciwebhooks/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"github.com/sirupsen/logrus"
"github.com/spf13/cobra"

"github.com/giantswarm/devctl/v6/pkg/githubclient"
"github.com/giantswarm/devctl/v7/pkg/githubclient"
)

type runner struct {
Expand Down
4 changes: 2 additions & 2 deletions cmd/repo/setup/command.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
"github.com/sirupsen/logrus"
"github.com/spf13/cobra"

"github.com/giantswarm/devctl/v6/cmd/repo/setup/ciwebhooks"
"github.com/giantswarm/devctl/v6/cmd/repo/setup/renovate"
"github.com/giantswarm/devctl/v7/cmd/repo/setup/ciwebhooks"
"github.com/giantswarm/devctl/v7/cmd/repo/setup/renovate"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion cmd/repo/setup/renovate/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"github.com/sirupsen/logrus"
"github.com/spf13/cobra"

"github.com/giantswarm/devctl/v6/pkg/githubclient"
"github.com/giantswarm/devctl/v7/pkg/githubclient"
)

type runner struct {
Expand Down
2 changes: 1 addition & 1 deletion cmd/repo/setup/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"github.com/sirupsen/logrus"
"github.com/spf13/cobra"

"github.com/giantswarm/devctl/v6/pkg/githubclient"
"github.com/giantswarm/devctl/v7/pkg/githubclient"
)

type runner struct {
Expand Down
6 changes: 3 additions & 3 deletions cmd/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ import (
"github.com/sirupsen/logrus"
"github.com/spf13/cobra"

"github.com/giantswarm/devctl/v6/internal/env"
"github.com/giantswarm/devctl/v6/pkg/project"
"github.com/giantswarm/devctl/v6/pkg/updater"
"github.com/giantswarm/devctl/v7/internal/env"
"github.com/giantswarm/devctl/v7/pkg/project"
"github.com/giantswarm/devctl/v7/pkg/updater"
)

type runner struct {
Expand Down
6 changes: 3 additions & 3 deletions cmd/version/check/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ import (
"github.com/giantswarm/micrologger"
"github.com/spf13/cobra"

"github.com/giantswarm/devctl/v6/internal/env"
"github.com/giantswarm/devctl/v6/pkg/project"
"github.com/giantswarm/devctl/v6/pkg/updater"
"github.com/giantswarm/devctl/v7/internal/env"
"github.com/giantswarm/devctl/v7/pkg/project"
"github.com/giantswarm/devctl/v7/pkg/updater"
)

type runner struct {
Expand Down
4 changes: 2 additions & 2 deletions cmd/version/command.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import (
"github.com/giantswarm/micrologger"
"github.com/spf13/cobra"

"github.com/giantswarm/devctl/v6/cmd/version/check"
"github.com/giantswarm/devctl/v6/cmd/version/update"
"github.com/giantswarm/devctl/v7/cmd/version/check"
"github.com/giantswarm/devctl/v7/cmd/version/update"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion cmd/version/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"github.com/giantswarm/micrologger"
"github.com/spf13/cobra"

"github.com/giantswarm/devctl/v6/pkg/project"
"github.com/giantswarm/devctl/v7/pkg/project"
)

type runner struct {
Expand Down
6 changes: 3 additions & 3 deletions cmd/version/update/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ import (
"github.com/giantswarm/micrologger"
"github.com/spf13/cobra"

"github.com/giantswarm/devctl/v6/internal/env"
"github.com/giantswarm/devctl/v6/pkg/project"
"github.com/giantswarm/devctl/v6/pkg/updater"
"github.com/giantswarm/devctl/v7/internal/env"
"github.com/giantswarm/devctl/v7/pkg/project"
"github.com/giantswarm/devctl/v7/pkg/updater"
)

type runner struct {
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/giantswarm/devctl/v6
module github.com/giantswarm/devctl/v7

go 1.23.0

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

"github.com/giantswarm/devctl/v6/pkg/project"
"github.com/giantswarm/devctl/v7/pkg/project"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"github.com/giantswarm/micrologger"
"github.com/spf13/cobra"

"github.com/giantswarm/devctl/v6/cmd"
"github.com/giantswarm/devctl/v7/cmd"
)

func main() {
Expand Down
4 changes: 2 additions & 2 deletions pkg/gen/gen.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import (

"github.com/giantswarm/microerror"

"github.com/giantswarm/devctl/v6/pkg/gen/input"
"github.com/giantswarm/devctl/v6/pkg/gen/internal"
"github.com/giantswarm/devctl/v7/pkg/gen/input"
"github.com/giantswarm/devctl/v7/pkg/gen/internal"
)

func Execute(ctx context.Context, files ...input.Input) error {
Expand Down
6 changes: 3 additions & 3 deletions pkg/gen/input/ami/ami.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import (

"github.com/giantswarm/microerror"

"github.com/giantswarm/devctl/v6/pkg/gen/input"
"github.com/giantswarm/devctl/v6/pkg/gen/input/ami/internal/file"
"github.com/giantswarm/devctl/v6/pkg/gen/input/ami/internal/params"
"github.com/giantswarm/devctl/v7/pkg/gen/input"
"github.com/giantswarm/devctl/v7/pkg/gen/input/ami/internal/file"
"github.com/giantswarm/devctl/v7/pkg/gen/input/ami/internal/params"
)

type AMI struct {
Expand Down
4 changes: 2 additions & 2 deletions pkg/gen/input/ami/internal/file/ami.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package file
import (
"path"

"github.com/giantswarm/devctl/v6/pkg/gen/input"
"github.com/giantswarm/devctl/v6/pkg/gen/input/ami/internal/params"
"github.com/giantswarm/devctl/v7/pkg/gen/input"
"github.com/giantswarm/devctl/v7/pkg/gen/input/ami/internal/params"
)

func NewAMIInput(p params.Params) input.Input {
Expand Down
2 changes: 1 addition & 1 deletion pkg/gen/input/ami/internal/params/key_common.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package params

import (
"github.com/giantswarm/devctl/v6/pkg/gen/internal"
"github.com/giantswarm/devctl/v7/pkg/gen/internal"
)

func Header(comment string) string {
Expand Down
6 changes: 3 additions & 3 deletions pkg/gen/input/apptest/apptest.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package apptest

import (
"github.com/giantswarm/devctl/v6/pkg/gen/input"
"github.com/giantswarm/devctl/v6/pkg/gen/input/apptest/internal/file"
"github.com/giantswarm/devctl/v6/pkg/gen/input/apptest/internal/params"
"github.com/giantswarm/devctl/v7/pkg/gen/input"
"github.com/giantswarm/devctl/v7/pkg/gen/input/apptest/internal/file"
"github.com/giantswarm/devctl/v7/pkg/gen/input/apptest/internal/params"
)

type Config struct {
Expand Down
4 changes: 2 additions & 2 deletions pkg/gen/input/apptest/internal/file/basic_suite.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
_ "embed"
"path/filepath"

"github.com/giantswarm/devctl/v6/pkg/gen/input"
"github.com/giantswarm/devctl/v6/pkg/gen/input/apptest/internal/params"
"github.com/giantswarm/devctl/v7/pkg/gen/input"
"github.com/giantswarm/devctl/v7/pkg/gen/input/apptest/internal/params"
)

//go:embed basic_suite.go.template
Expand Down
4 changes: 2 additions & 2 deletions pkg/gen/input/apptest/internal/file/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
_ "embed"
"path/filepath"

"github.com/giantswarm/devctl/v6/pkg/gen/input"
"github.com/giantswarm/devctl/v6/pkg/gen/input/apptest/internal/params"
"github.com/giantswarm/devctl/v7/pkg/gen/input"
"github.com/giantswarm/devctl/v7/pkg/gen/input/apptest/internal/params"
)

//go:embed config.yaml.template
Expand Down
Loading

0 comments on commit 3c6a7df

Please sign in to comment.