Skip to content

Commit

Permalink
Bump version to v2
Browse files Browse the repository at this point in the history
  • Loading branch information
khasanovbi committed Aug 15, 2019
1 parent 500af99 commit e25a2b7
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 8 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Community driven database to get bank info (name, brand, color, etc.) by bankcar
### Install

```
go get -u github.com/khasanovbi/banksdb
go get -u github.com/khasanovbi/banksdb/v2
```

### Usage
Expand All @@ -25,8 +25,8 @@ package main
import (
"fmt"

"github.com/khasanovbi/banksdb"
"github.com/khasanovbi/banksdb/paymentsystem"
"github.com/khasanovbi/banksdb/v2"
"github.com/khasanovbi/banksdb/v2/paymentsystem"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package banksdb_test
import (
"fmt"

"github.com/khasanovbi/banksdb"
"github.com/khasanovbi/banksdb/v2"
)

func ExampleFindBank() {
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/khasanovbi/banksdb
module github.com/khasanovbi/banksdb/v2

require (
github.com/armon/go-radix v1.0.0
Expand Down
1 change: 1 addition & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
golang.org/x/text v0.3.2 h1:tW2bmiBqwgJj/UpqtC8EpXEZVYOwU0yG4iWbprSVAcs=
golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk=
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
golang.org/x/tools v0.0.0-20190729092621-ff9f1409240a h1:mEQZbbaBjWyLNy0tmZmgEuQAR8XOQ3hL8GYi3J/NG64=
golang.org/x/tools v0.0.0-20190729092621-ff9f1409240a/go.mod h1:jcCCGcm9btYwXyDqrUWc6MKQKKGJCWEQ3AfLSRIbEuI=
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7 h1:9zdDQZ7Thm29KFXgAX/+yaf3eVbP7djjWp/dXAppNCc=
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
Expand Down
2 changes: 1 addition & 1 deletion paymentsystem/bench_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"regexp"
"testing"

"github.com/khasanovbi/banksdb/paymentsystem"
"github.com/khasanovbi/banksdb/v2/paymentsystem"
)

type singleRecordRePaymentSystemDB struct {
Expand Down
2 changes: 1 addition & 1 deletion paymentsystem/example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package paymentsystem_test
import (
"fmt"

"github.com/khasanovbi/banksdb/paymentsystem"
"github.com/khasanovbi/banksdb/v2/paymentsystem"
)

func ExampleFindPaymentSystem() {
Expand Down
2 changes: 1 addition & 1 deletion paymentsystem/payment_system_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package paymentsystem_test
import (
"testing"

"github.com/khasanovbi/banksdb/paymentsystem"
"github.com/khasanovbi/banksdb/v2/paymentsystem"
"github.com/stretchr/testify/require"
)

Expand Down

0 comments on commit e25a2b7

Please sign in to comment.