Skip to content

Commit bf0672a

Browse files
Merge pull request #85 from silvin-lubecki/cnabio-cnabgo
Move from deislabs/cnab-go to cnabio/cnab-go
2 parents aee9731 + ed70e38 commit bf0672a

File tree

24 files changed

+39
-44
lines changed

24 files changed

+39
-44
lines changed

Gopkg.lock

Lines changed: 13 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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
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+
version = "v0.8.0-beta1"
3434

3535
[[constraint]]
3636
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
@@ -9,9 +9,9 @@ import (
99
"os"
1010
"testing"
1111

12+
"github.com/cnabio/cnab-go/bundle"
1213
"github.com/containerd/containerd/images"
1314
"github.com/containerd/containerd/platforms"
14-
"github.com/deislabs/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
@@ -7,9 +7,9 @@ import (
77
"io"
88
"io/ioutil"
99

10+
"github.com/cnabio/cnab-go/bundle"
1011
"github.com/containerd/containerd/images"
1112
"github.com/containerd/containerd/remotes"
12-
"github.com/deislabs/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)