Skip to content

Commit 2b45439

Browse files
ndeloofglours
authored andcommitted
next release will be major version v5.x
Signed-off-by: Nicolas De Loof <[email protected]>
1 parent f0dce1b commit 2b45439

File tree

147 files changed

+253
-253
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

147 files changed

+253
-253
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
PKG := github.com/docker/compose/v2
15+
PKG := github.com/docker/compose/v5
1616
VERSION ?= $(shell git describe --match 'v[0-9]*' --dirty='.m' --always --tags)
1717

1818
GO_LDFLAGS ?= -w -X ${PKG}/internal.Version=${VERSION}

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
# Docker Compose v2
1010

1111
[![GitHub release](https://img.shields.io/github/v/release/docker/compose.svg?style=flat-square)](https://github.com/docker/compose/releases/latest)
12-
[![PkgGoDev](https://img.shields.io/badge/go.dev-docs-007d9c?style=flat-square&logo=go&logoColor=white)](https://pkg.go.dev/github.com/docker/compose/v2)
12+
[![PkgGoDev](https://img.shields.io/badge/go.dev-docs-007d9c?style=flat-square&logo=go&logoColor=white)](https://pkg.go.dev/github.com/docker/compose/v5)
1313
[![Build Status](https://img.shields.io/github/actions/workflow/status/docker/compose/ci.yml?label=ci&logo=github&style=flat-square)](https://github.com/docker/compose/actions?query=workflow%3Aci)
14-
[![Go Report Card](https://goreportcard.com/badge/github.com/docker/compose/v2?style=flat-square)](https://goreportcard.com/report/github.com/docker/compose/v2)
14+
[![Go Report Card](https://goreportcard.com/badge/github.com/docker/compose/v5?style=flat-square)](https://goreportcard.com/report/github.com/docker/compose/v5)
1515
[![Codecov](https://codecov.io/gh/docker/compose/branch/main/graph/badge.svg?token=HP3K4Y4ctu)](https://codecov.io/gh/docker/compose)
1616
[![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/docker/compose/badge)](https://api.securityscorecards.dev/projects/github.com/docker/compose)
1717
![Docker Compose](logo.png?raw=true "Docker Compose Logo")

cmd/cmdtrace/cmd_span.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ import (
2626

2727
dockercli "github.com/docker/cli/cli"
2828
"github.com/docker/cli/cli/command"
29-
commands "github.com/docker/compose/v2/cmd/compose"
30-
"github.com/docker/compose/v2/internal/tracing"
29+
commands "github.com/docker/compose/v5/cmd/compose"
30+
"github.com/docker/compose/v5/internal/tracing"
3131
"github.com/spf13/cobra"
3232
flag "github.com/spf13/pflag"
3333
"go.opentelemetry.io/otel"

cmd/cmdtrace/cmd_span_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import (
2020
"reflect"
2121
"testing"
2222

23-
commands "github.com/docker/compose/v2/cmd/compose"
23+
commands "github.com/docker/compose/v5/cmd/compose"
2424
"github.com/spf13/cobra"
2525
flag "github.com/spf13/pflag"
2626
)

cmd/compatibility/convert.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import (
2121
"os"
2222
"strings"
2323

24-
"github.com/docker/compose/v2/cmd/compose"
24+
"github.com/docker/compose/v5/cmd/compose"
2525
)
2626

2727
func getCompletionCommands() []string {

cmd/compose/attach.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ import (
2020
"context"
2121

2222
"github.com/docker/cli/cli/command"
23-
"github.com/docker/compose/v2/pkg/api"
24-
"github.com/docker/compose/v2/pkg/compose"
23+
"github.com/docker/compose/v5/pkg/api"
24+
"github.com/docker/compose/v5/pkg/compose"
2525
"github.com/spf13/cobra"
2626
)
2727

cmd/compose/bridge.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ import (
2828
"github.com/docker/go-units"
2929
"github.com/spf13/cobra"
3030

31-
"github.com/docker/compose/v2/cmd/formatter"
32-
"github.com/docker/compose/v2/pkg/bridge"
33-
"github.com/docker/compose/v2/pkg/compose"
31+
"github.com/docker/compose/v5/cmd/formatter"
32+
"github.com/docker/compose/v5/pkg/bridge"
33+
"github.com/docker/compose/v5/pkg/compose"
3434
)
3535

3636
func bridgeCommand(p *ProjectOptions, dockerCli command.Cli) *cobra.Command {

cmd/compose/build.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ import (
2626
"github.com/compose-spec/compose-go/v2/types"
2727
"github.com/docker/cli/cli/command"
2828
cliopts "github.com/docker/cli/opts"
29-
"github.com/docker/compose/v2/cmd/display"
30-
"github.com/docker/compose/v2/pkg/compose"
29+
"github.com/docker/compose/v5/cmd/display"
30+
"github.com/docker/compose/v5/pkg/compose"
3131
"github.com/spf13/cobra"
3232

33-
"github.com/docker/compose/v2/pkg/api"
33+
"github.com/docker/compose/v5/pkg/api"
3434
)
3535

3636
type buildOptions struct {

cmd/compose/commit.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ import (
2121

2222
"github.com/docker/cli/cli/command"
2323
"github.com/docker/cli/opts"
24-
"github.com/docker/compose/v2/pkg/api"
25-
"github.com/docker/compose/v2/pkg/compose"
24+
"github.com/docker/compose/v5/pkg/api"
25+
"github.com/docker/compose/v5/pkg/compose"
2626
"github.com/spf13/cobra"
2727
)
2828

cmd/compose/completion.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ import (
2121
"strings"
2222

2323
"github.com/docker/cli/cli/command"
24-
"github.com/docker/compose/v2/pkg/api"
25-
"github.com/docker/compose/v2/pkg/compose"
24+
"github.com/docker/compose/v5/pkg/api"
25+
"github.com/docker/compose/v5/pkg/compose"
2626
"github.com/spf13/cobra"
2727
)
2828

0 commit comments

Comments
 (0)