Skip to content

Commit

Permalink
chore: migrate to go module (bxcodec#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
bxcodec committed Feb 1, 2019
1 parent 7fd2178 commit b0eea9c
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 35 deletions.
22 changes: 0 additions & 22 deletions .changes

This file was deleted.

2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: go
go:
- "1.10"
- "1.11"

before_install:
- go get -t -v ./...
Expand Down
2 changes: 1 addition & 1 deletion datetime_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"testing"
"time"

"github.com/bxcodec/faker/support/slice"
"github.com/bxcodec/faker/v3/support/slice"
)

func TestSetDateTimer(t *testing.T) {
Expand Down
4 changes: 0 additions & 4 deletions glide.lock

This file was deleted.

2 changes: 0 additions & 2 deletions glide.yaml

This file was deleted.

3 changes: 3 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module github.com/bxcodec/faker/v3

// go: no requirements found in glide.lock
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
github.com/bxcodec/faker v2.0.1+incompatible h1:P0KUpUw5w6WJXwrPfv35oc91i4d8nf40Nwln+M/+faA=
github.com/bxcodec/faker v2.0.1+incompatible/go.mod h1:BNzfpVdTwnFJ6GtfYTcQu6l6rHShT+veBxNCnjCx5XM=
2 changes: 1 addition & 1 deletion internet_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"strings"
"testing"

"github.com/bxcodec/faker/support/slice"
"github.com/bxcodec/faker/v3/support/slice"
)

func TestEmail(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion lorem_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"strings"
"testing"

"github.com/bxcodec/faker/support/slice"
"github.com/bxcodec/faker/v3/support/slice"
)

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

"github.com/bxcodec/faker/support/slice"
"github.com/bxcodec/faker/v3/support/slice"
)

func TestSetDowser(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion phone.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"reflect"
"strings"

"github.com/bxcodec/faker/support/slice"
"github.com/bxcodec/faker/v3/support/slice"
)

var phone Phoner
Expand Down
2 changes: 1 addition & 1 deletion price_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"strings"
"testing"

"github.com/bxcodec/faker/support/slice"
"github.com/bxcodec/faker/v3/support/slice"
)

func TestSetPrice(t *testing.T) {
Expand Down

0 comments on commit b0eea9c

Please sign in to comment.