Skip to content

Commit

Permalink
fix: Switch to proper v2 tag
Browse files Browse the repository at this point in the history
Fixes: #231
  • Loading branch information
nickatsegment committed Sep 26, 2019
1 parent 1fdf2cc commit 3613c18
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion cmd/delete.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/exec.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/find.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/find_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"testing"
"time"

"github.com/segmentio/chamber/store"
"github.com/segmentio/chamber/v2/store"
"github.com/stretchr/testify/assert"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/history.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/import.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/read.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/write.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down
2 changes: 1 addition & 1 deletion environ/environ.go
Original file line number Diff line number Diff line change
Expand Up @@ -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".
Expand Down
2 changes: 1 addition & 1 deletion environ/environ_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"sort"
"testing"

"github.com/segmentio/chamber/store"
"github.com/segmentio/chamber/v2/store"
"github.com/stretchr/testify/assert"
)

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/segmentio/chamber
module github.com/segmentio/chamber/v2

require (
github.com/aws/aws-sdk-go v1.16.26
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 3613c18

Please sign in to comment.