Skip to content

Commit f44fe82

Browse files
Move from deislabs/cnab-go to cnabio/cnab-go
Signed-off-by: Silvin Lubecki <silvin.lubecki@docker.com>
1 parent aee9731 commit f44fe82

File tree

24 files changed

+32
-30
lines changed

24 files changed

+32
-30
lines changed

Gopkg.lock

Lines changed: 14 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Gopkg.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,9 @@
2929
version = "v1.0.1"
3030

3131
[[constraint]]
32-
name = "github.com/deislabs/cnab-go"
33-
version = "v0.7.1-beta1"
32+
name = "github.com/cnabio/cnab-go"
33+
branch = "fix-imports"
34+
source = "github.com/silvin-lubecki/cnab-go"
3435

3536
[[constraint]]
3637
name = "github.com/containerd/containerd"

cmd/cnab-to-oci/fixup.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66
"io/ioutil"
77
"os"
88

9+
"github.com/cnabio/cnab-go/bundle"
910
containerdRemotes "github.com/containerd/containerd/remotes"
10-
"github.com/deislabs/cnab-go/bundle"
1111
"github.com/docker/cli/cli/config"
1212
"github.com/docker/cnab-to-oci/remotes"
1313
"github.com/docker/distribution/reference"

cmd/cnab-to-oci/push.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"io/ioutil"
99
"os"
1010

11-
"github.com/deislabs/cnab-go/bundle"
11+
"github.com/cnabio/cnab-go/bundle"
1212
"github.com/docker/cnab-to-oci/remotes"
1313
"github.com/docker/distribution/reference"
1414
"github.com/docker/docker/client"

converter/convert.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77
"fmt"
88
"sort"
99

10+
"github.com/cnabio/cnab-go/bundle"
1011
"github.com/containerd/containerd/images"
11-
"github.com/deislabs/cnab-go/bundle"
1212
"github.com/docker/cnab-to-oci/relocation"
1313
"github.com/docker/distribution/reference"
1414
ocischema "github.com/opencontainers/image-spec/specs-go"

converter/types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package converter
22

33
import (
4-
"github.com/deislabs/cnab-go/bundle"
4+
"github.com/cnabio/cnab-go/bundle"
55
"github.com/docker/distribution"
66
"github.com/docker/distribution/manifest/schema2"
77
"github.com/docker/go/canonical/json"

converter/types_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package converter
33
import (
44
"testing"
55

6-
"github.com/deislabs/cnab-go/bundle"
6+
"github.com/cnabio/cnab-go/bundle"
77
"gotest.tools/assert"
88
)
99

remotes/fixup.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ import (
66
"fmt"
77
"io/ioutil"
88

9+
"github.com/cnabio/cnab-go/bundle"
910
"github.com/containerd/containerd/images"
1011
"github.com/containerd/containerd/log"
1112
"github.com/containerd/containerd/platforms"
1213
"github.com/containerd/containerd/remotes"
13-
"github.com/deislabs/cnab-go/bundle"
1414
"github.com/docker/cnab-to-oci/relocation"
1515
"github.com/docker/distribution/reference"
1616
ocischemav1 "github.com/opencontainers/image-spec/specs-go/v1"

remotes/fixup_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111

1212
"github.com/containerd/containerd/images"
1313
"github.com/containerd/containerd/platforms"
14-
"github.com/deislabs/cnab-go/bundle"
14+
"github.com/cnabio/cnab-go/bundle"
1515
"github.com/docker/cnab-to-oci/relocation"
1616
"github.com/docker/distribution/reference"
1717
"github.com/opencontainers/go-digest"

remotes/fixuphelpers.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99

1010
"github.com/containerd/containerd/images"
1111
"github.com/containerd/containerd/remotes"
12-
"github.com/deislabs/cnab-go/bundle"
12+
"github.com/cnabio/cnab-go/bundle"
1313
"github.com/docker/distribution/reference"
1414
"github.com/opencontainers/go-digest"
1515
ocischemav1 "github.com/opencontainers/image-spec/specs-go/v1"

0 commit comments

Comments
 (0)