Skip to content

Commit

Permalink
fix module version
Browse files Browse the repository at this point in the history
  • Loading branch information
thatmattlove committed Sep 24, 2023
1 parent 90294ab commit 1b51297
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions cmd/commands.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ import (
"github.com/jedib0t/go-pretty/table"
"github.com/jedib0t/go-pretty/text"
"github.com/thatmattlove/go-macaddr"
"github.com/thatmattlove/oui/internal/logger"
"github.com/thatmattlove/oui/internal/util"
"github.com/thatmattlove/oui/oui"
"github.com/thatmattlove/oui/v2/internal/logger"
"github.com/thatmattlove/oui/v2/internal/util"
"github.com/thatmattlove/oui/v2/oui"
"github.com/urfave/cli/v2"
"golang.org/x/text/language"
"golang.org/x/text/message"
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/thatmattlove/oui
module github.com/thatmattlove/oui/v2

go 1.20

Expand Down
2 changes: 1 addition & 1 deletion internal/logger/logger_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"io"
"testing"

"github.com/thatmattlove/oui/internal/logger"
"github.com/thatmattlove/oui/v2/internal/logger"
)

func Test_Logger(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion internal/util/util_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"testing"

"github.com/stretchr/testify/assert"
"github.com/thatmattlove/oui/internal/util"
"github.com/thatmattlove/oui/v2/internal/util"
)

func Test_removeComments(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"os"

"github.com/thatmattlove/oui/cmd"
"github.com/thatmattlove/oui/v2/cmd"
)

func getArgs() []string {
Expand Down
2 changes: 1 addition & 1 deletion oui/collect_csv_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (

"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/thatmattlove/oui/oui"
"github.com/thatmattlove/oui/v2/oui"
)

func Test_CollectAll(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion oui/db_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (

"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/thatmattlove/oui/oui"
"github.com/thatmattlove/oui/v2/oui"
)

func Test_New(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion oui/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (

"github.com/gookit/gcli/v3/progress"
_ "github.com/lib/pq"
"github.com/thatmattlove/oui/internal/util"
"github.com/thatmattlove/oui/v2/internal/util"
_ "modernc.org/sqlite"
)

Expand Down

0 comments on commit 1b51297

Please sign in to comment.