diff --git a/cmd/delete.go b/cmd/delete.go index c5c67f4e..e5f32517 100644 --- a/cmd/delete.go +++ b/cmd/delete.go @@ -4,7 +4,7 @@ import ( "strings" "github.com/pkg/errors" - "github.com/segmentio/chamber/store" + "github.com/segmentio/chamber/v2/store" "github.com/spf13/cobra" analytics "gopkg.in/segmentio/analytics-go.v3" ) diff --git a/cmd/exec.go b/cmd/exec.go index 23f0d4ac..95dbd9de 100644 --- a/cmd/exec.go +++ b/cmd/exec.go @@ -6,7 +6,7 @@ import ( "strings" "github.com/pkg/errors" - "github.com/segmentio/chamber/environ" + "github.com/segmentio/chamber/v2/environ" "github.com/spf13/cobra" analytics "gopkg.in/segmentio/analytics-go.v3" ) diff --git a/cmd/find.go b/cmd/find.go index 76ec00a7..e2a032a1 100644 --- a/cmd/find.go +++ b/cmd/find.go @@ -7,7 +7,7 @@ import ( "text/tabwriter" "github.com/pkg/errors" - "github.com/segmentio/chamber/store" + "github.com/segmentio/chamber/v2/store" "github.com/spf13/cobra" ) diff --git a/cmd/find_test.go b/cmd/find_test.go index cbbfff51..2d4eb960 100644 --- a/cmd/find_test.go +++ b/cmd/find_test.go @@ -5,7 +5,7 @@ import ( "testing" "time" - "github.com/segmentio/chamber/store" + "github.com/segmentio/chamber/v2/store" "github.com/stretchr/testify/assert" ) diff --git a/cmd/history.go b/cmd/history.go index 635cdcf9..123a9e55 100644 --- a/cmd/history.go +++ b/cmd/history.go @@ -7,7 +7,7 @@ import ( "text/tabwriter" "github.com/pkg/errors" - "github.com/segmentio/chamber/store" + "github.com/segmentio/chamber/v2/store" "github.com/spf13/cobra" analytics "gopkg.in/segmentio/analytics-go.v3" ) diff --git a/cmd/import.go b/cmd/import.go index aa2317c9..b881d12a 100644 --- a/cmd/import.go +++ b/cmd/import.go @@ -8,7 +8,7 @@ import ( "strings" "github.com/pkg/errors" - "github.com/segmentio/chamber/store" + "github.com/segmentio/chamber/v2/store" "github.com/spf13/cobra" analytics "gopkg.in/segmentio/analytics-go.v3" ) diff --git a/cmd/list.go b/cmd/list.go index 4402ba53..8c47400e 100644 --- a/cmd/list.go +++ b/cmd/list.go @@ -8,7 +8,7 @@ import ( "text/tabwriter" "github.com/pkg/errors" - "github.com/segmentio/chamber/store" + "github.com/segmentio/chamber/v2/store" "github.com/spf13/cobra" analytics "gopkg.in/segmentio/analytics-go.v3" ) diff --git a/cmd/read.go b/cmd/read.go index fffd1a04..6e8bcb3b 100644 --- a/cmd/read.go +++ b/cmd/read.go @@ -7,7 +7,7 @@ import ( "text/tabwriter" "github.com/pkg/errors" - "github.com/segmentio/chamber/store" + "github.com/segmentio/chamber/v2/store" "github.com/spf13/cobra" analytics "gopkg.in/segmentio/analytics-go.v3" ) diff --git a/cmd/root.go b/cmd/root.go index 7a3ca1f8..30eacc0f 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -7,7 +7,7 @@ import ( "strings" "github.com/pkg/errors" - "github.com/segmentio/chamber/store" + "github.com/segmentio/chamber/v2/store" "github.com/spf13/cobra" analytics "gopkg.in/segmentio/analytics-go.v3" ) diff --git a/cmd/write.go b/cmd/write.go index c16c7a2e..b922960b 100644 --- a/cmd/write.go +++ b/cmd/write.go @@ -7,7 +7,7 @@ import ( "strings" "github.com/pkg/errors" - "github.com/segmentio/chamber/store" + "github.com/segmentio/chamber/v2/store" "github.com/spf13/cobra" analytics "gopkg.in/segmentio/analytics-go.v3" ) diff --git a/environ/environ.go b/environ/environ.go index 3357d38c..9fc36eab 100644 --- a/environ/environ.go +++ b/environ/environ.go @@ -4,7 +4,7 @@ import ( "fmt" "strings" - "github.com/segmentio/chamber/store" + "github.com/segmentio/chamber/v2/store" ) // environ is a slice of strings representing the environment, in the form "key=value". diff --git a/environ/environ_test.go b/environ/environ_test.go index 2000e794..76f59a7a 100644 --- a/environ/environ_test.go +++ b/environ/environ_test.go @@ -4,7 +4,7 @@ import ( "sort" "testing" - "github.com/segmentio/chamber/store" + "github.com/segmentio/chamber/v2/store" "github.com/stretchr/testify/assert" ) diff --git a/go.mod b/go.mod index f7f3a2fe..4fdf08c7 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/segmentio/chamber +module github.com/segmentio/chamber/v2 require ( github.com/aws/aws-sdk-go v1.16.26 diff --git a/main.go b/main.go index 197b00a0..61d5d8ca 100644 --- a/main.go +++ b/main.go @@ -1,6 +1,6 @@ package main -import "github.com/segmentio/chamber/cmd" +import "github.com/segmentio/chamber/v2/cmd" var ( // This is updated by linker flags during build