Skip to content

Commit

Permalink
update pkg version
Browse files Browse the repository at this point in the history
  • Loading branch information
i-norden committed Mar 30, 2023
1 parent 360b0ab commit 0e49b87
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ import (
"github.com/ipfs/go-ipfs/core"
"github.com/ipfs/go-ipfs/repo/fsrepo"
"github.com/jmoiron/sqlx"
"github.com/vulcanize/ipfs-ethdb/v4"
"github.com/vulcanize/ipfs-ethdb/v5"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion batch_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import (
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"

ipfsethdb "github.com/cerc-io/ipfs-ethdb/v4"
ipfsethdb "github.com/cerc-io/ipfs-ethdb/v5"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion database_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import (
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"

ipfsethdb "github.com/cerc-io/ipfs-ethdb/v4"
ipfsethdb "github.com/cerc-io/ipfs-ethdb/v5"
)

var (
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/cerc-io/ipfs-ethdb/v4
module github.com/cerc-io/ipfs-ethdb/v5

go 1.18
go 1.19

require (
github.com/ethereum/go-ethereum v1.11.5
Expand Down
2 changes: 1 addition & 1 deletion postgres/doc.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
"github.com/ethereum/go-ethereum/core/state"
"github.com/ethereum/go-ethereum/trie"
"github.com/jmoiron/sqlx"
"github.com/vulcanize/ipfs-ethdb/v4/postgres"
"github.com/vulcanize/ipfs-ethdb/v5/postgres"
)

func main() {
Expand Down
4 changes: 2 additions & 2 deletions postgres/v0/batch_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
"math/big"
"time"

"github.com/cerc-io/ipfs-ethdb/v4/postgres/shared"
"github.com/cerc-io/ipfs-ethdb/v5/postgres/shared"

"github.com/ipfs/go-cid"

Expand All @@ -31,7 +31,7 @@ import (
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"

pgipfsethdb "github.com/cerc-io/ipfs-ethdb/v4/postgres/v0"
pgipfsethdb "github.com/cerc-io/ipfs-ethdb/v5/postgres/v0"
)

var (
Expand Down
4 changes: 2 additions & 2 deletions postgres/v0/database_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
"math/big"
"time"

"github.com/cerc-io/ipfs-ethdb/v4/postgres/shared"
"github.com/cerc-io/ipfs-ethdb/v5/postgres/shared"

"github.com/ipfs/go-cid"

Expand All @@ -32,7 +32,7 @@ import (
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"

pgipfsethdb "github.com/cerc-io/ipfs-ethdb/v4/postgres/v0"
pgipfsethdb "github.com/cerc-io/ipfs-ethdb/v5/postgres/v0"
)

var (
Expand Down
4 changes: 2 additions & 2 deletions postgres/v1/batch_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
"math/big"
"time"

"github.com/cerc-io/ipfs-ethdb/v4/postgres/shared"
"github.com/cerc-io/ipfs-ethdb/v5/postgres/shared"

"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/ethdb"
Expand All @@ -29,7 +29,7 @@ import (
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"

pgipfsethdb "github.com/cerc-io/ipfs-ethdb/v4/postgres/v1"
pgipfsethdb "github.com/cerc-io/ipfs-ethdb/v5/postgres/v1"
)

var (
Expand Down
4 changes: 2 additions & 2 deletions postgres/v1/database_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
"math/big"
"time"

"github.com/cerc-io/ipfs-ethdb/v4/postgres/shared"
"github.com/cerc-io/ipfs-ethdb/v5/postgres/shared"

"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/ethdb"
Expand All @@ -30,7 +30,7 @@ import (
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"

pgipfsethdb "github.com/cerc-io/ipfs-ethdb/v4/postgres/v1"
pgipfsethdb "github.com/cerc-io/ipfs-ethdb/v5/postgres/v1"
)

var (
Expand Down

0 comments on commit 0e49b87

Please sign in to comment.