Skip to content

Commit

Permalink
chore: v3 version bump (#799)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanchristo authored Feb 23, 2022
1 parent 909a0ed commit 3ddc81e
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ import (
ecocreditmodule "github.com/regen-network/regen-ledger/x/ecocredit/module"

// unnamed import of statik for swagger UI support
_ "github.com/regen-network/regen-ledger/v2/client/docs/statik"
_ "github.com/regen-network/regen-ledger/v3/client/docs/statik"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion app/regen/cmd/cmd_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"github.com/stretchr/testify/require"

"github.com/cosmos/cosmos-sdk/x/genutil/client/cli"
cmd "github.com/regen-network/regen-ledger/v2/app/regen/cmd"
cmd "github.com/regen-network/regen-ledger/v3/app/regen/cmd"
)

func TestInitCmd(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion app/regen/cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ import (
"github.com/tendermint/tendermint/libs/log"
dbm "github.com/tendermint/tm-db"

"github.com/regen-network/regen-ledger/v2/app"
"github.com/regen-network/regen-ledger/v3/app"
)

// NewRootCmd creates a new root command for regen. It is called once in the
Expand Down
2 changes: 1 addition & 1 deletion app/regen/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"os"

cmd "github.com/regen-network/regen-ledger/v2/app/regen/cmd"
cmd "github.com/regen-network/regen-ledger/v3/app/regen/cmd"
)

// In main we call the rootCmd
Expand Down
2 changes: 1 addition & 1 deletion app/testsuite/network_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
dbm "github.com/tendermint/tm-db"

"github.com/regen-network/regen-ledger/types/testutil/network"
"github.com/regen-network/regen-ledger/v2/app"
"github.com/regen-network/regen-ledger/v3/app"
)

func NewRegenAppConstructor(val network.Validator) servertypes.Application {
Expand Down
2 changes: 1 addition & 1 deletion app/testsuite/network_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ package testsuite_test
import (
"testing"

"github.com/regen-network/regen-ledger/v2/app/testsuite"
"github.com/regen-network/regen-ledger/types/testutil/network"
"github.com/regen-network/regen-ledger/v3/app/testsuite"
"github.com/stretchr/testify/suite"
)

Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/regen-network/regen-ledger/v2
module github.com/regen-network/regen-ledger/v3

go 1.17

Expand All @@ -9,7 +9,7 @@ require (
github.com/rakyll/statik v0.1.7
github.com/regen-network/regen-ledger/types v1.0.0
github.com/regen-network/regen-ledger/x/data v0.0.0-20210602121340-fa967f821a6e
github.com/regen-network/regen-ledger/x/ecocredit v1.0.0
github.com/regen-network/regen-ledger/x/ecocredit v1.1.0
github.com/regen-network/regen-ledger/x/group v1.0.0-beta1
github.com/rs/zerolog v1.23.0
github.com/spf13/cast v1.4.1
Expand Down
2 changes: 1 addition & 1 deletion x/group/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ require (
github.com/regen-network/regen-ledger/orm v1.0.0-beta1
github.com/regen-network/regen-ledger/types v1.0.0
github.com/regen-network/regen-ledger/x/data v0.0.0-20210602121340-fa967f821a6e
github.com/regen-network/regen-ledger/x/ecocredit v1.0.0
github.com/regen-network/regen-ledger/x/ecocredit v1.1.0
github.com/spf13/cobra v1.2.1
github.com/stretchr/testify v1.7.0
github.com/tendermint/tendermint v0.34.13
Expand Down

0 comments on commit 3ddc81e

Please sign in to comment.