Skip to content

Commit

Permalink
chore: update cosmos sdk dependency (#580)
Browse files Browse the repository at this point in the history
* chore: update cosmos sdk dependency

* update cosmos-sdk dependency in all nested modules
  • Loading branch information
robert-zaremba authored Oct 18, 2021
1 parent f67b036 commit 151c5b0
Show file tree
Hide file tree
Showing 12 changed files with 2,308 additions and 190 deletions.
8 changes: 4 additions & 4 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/regen-network/regen-ledger
go 1.15

require (
github.com/cosmos/cosmos-sdk v0.44.0
github.com/cosmos/cosmos-sdk v0.44.2
github.com/cosmos/ibc-go v1.0.1
github.com/gorilla/mux v1.8.0
github.com/rakyll/statik v0.1.7
Expand All @@ -13,9 +13,9 @@ require (
github.com/regen-network/regen-ledger/x/group v0.0.0-00010101000000-000000000000
github.com/rs/zerolog v1.23.0
github.com/spf13/cast v1.3.1
github.com/spf13/cobra v1.1.3
github.com/spf13/cobra v1.2.1
github.com/stretchr/testify v1.7.0
github.com/tendermint/tendermint v0.34.12
github.com/tendermint/tendermint v0.34.13
github.com/tendermint/tm-db v0.6.4
golang.org/x/crypto v0.0.0-20210920023735-84f357641f63 // indirect
google.golang.org/genproto v0.0.0-20210920155426-26f343e4c215 // indirect
Expand All @@ -25,7 +25,7 @@ replace google.golang.org/grpc => google.golang.org/grpc v1.33.2

replace github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.2-alpha.regen.4

replace github.com/cosmos/cosmos-sdk => github.com/regen-network/cosmos-sdk v0.44.0-regen-2
replace github.com/cosmos/cosmos-sdk => github.com/regen-network/cosmos-sdk v0.44.2-regen-1

replace github.com/regen-network/regen-ledger/types => ./types

Expand Down
394 changes: 372 additions & 22 deletions go.sum

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions orm/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ module github.com/regen-network/regen-ledger/orm
go 1.15

require (
github.com/cosmos/cosmos-sdk v0.44.0
github.com/cosmos/cosmos-sdk v0.44.2
github.com/gogo/protobuf v1.3.3
github.com/stretchr/testify v1.7.0
github.com/tendermint/tm-db v0.6.4
pgregory.net/rapid v0.4.7
)

replace github.com/cosmos/cosmos-sdk => github.com/regen-network/cosmos-sdk v0.44.0-regen-2
replace github.com/cosmos/cosmos-sdk => github.com/regen-network/cosmos-sdk v0.44.2-regen-1

replace github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1
409 changes: 382 additions & 27 deletions orm/go.sum

Large diffs are not rendered by default.

11 changes: 5 additions & 6 deletions types/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,17 @@ go 1.15

require (
github.com/cockroachdb/apd/v2 v2.0.2
github.com/cosmos/cosmos-sdk v0.44.0
github.com/cosmos/cosmos-sdk v0.44.2
github.com/gogo/protobuf v1.3.3
github.com/grpc-ecosystem/grpc-gateway v1.16.0
github.com/lib/pq v1.10.0 // indirect
github.com/spf13/cobra v1.1.3
github.com/spf13/cobra v1.2.1
github.com/stretchr/testify v1.7.0
github.com/tendermint/tendermint v0.34.12
github.com/tendermint/tendermint v0.34.13
github.com/tendermint/tm-db v0.6.4
google.golang.org/grpc v1.38.0
google.golang.org/grpc v1.40.0
pgregory.net/rapid v0.4.7
)

replace github.com/cosmos/cosmos-sdk => github.com/regen-network/cosmos-sdk v0.44.0-regen-2
replace github.com/cosmos/cosmos-sdk => github.com/regen-network/cosmos-sdk v0.44.2-regen-1

replace github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1
411 changes: 382 additions & 29 deletions types/go.sum

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions x/data/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,20 @@ go 1.15

require (
github.com/btcsuite/btcutil v1.0.3-0.20201208143702-a53e38424cce
github.com/cosmos/cosmos-sdk v0.44.0
github.com/cosmos/cosmos-sdk v0.44.2
github.com/gogo/protobuf v1.3.3
github.com/golang/protobuf v1.5.2
github.com/gorilla/mux v1.8.0
github.com/grpc-ecosystem/grpc-gateway v1.16.0
github.com/ipfs/go-cid v0.0.7
github.com/regen-network/regen-ledger/types v0.0.0-00010101000000-000000000000
github.com/spf13/cobra v1.1.3
github.com/spf13/cobra v1.2.1
github.com/stretchr/testify v1.7.0
google.golang.org/genproto v0.0.0-20210602131652-f16073e35f0c
google.golang.org/grpc v1.38.0
google.golang.org/grpc v1.40.0
)

replace github.com/cosmos/cosmos-sdk => github.com/regen-network/cosmos-sdk v0.44.0-regen-2
replace github.com/cosmos/cosmos-sdk => github.com/regen-network/cosmos-sdk v0.44.2-regen-1

replace github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1

Expand Down
410 changes: 382 additions & 28 deletions x/data/go.sum

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions x/ecocredit/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,25 @@ module github.com/regen-network/regen-ledger/x/ecocredit
go 1.15

require (
github.com/cosmos/cosmos-sdk v0.44.0
github.com/cosmos/cosmos-sdk v0.44.2
github.com/gogo/protobuf v1.3.3
github.com/golang/protobuf v1.5.2
github.com/gorilla/mux v1.8.0
github.com/grpc-ecosystem/grpc-gateway v1.16.0
github.com/pkg/errors v0.9.1
github.com/regen-network/regen-ledger/orm v0.0.0-00010101000000-000000000000
github.com/regen-network/regen-ledger/types v0.0.0-00010101000000-000000000000
github.com/spf13/cobra v1.1.3
github.com/spf13/cobra v1.2.1
github.com/stretchr/testify v1.7.0
github.com/tendermint/tendermint v0.34.12
github.com/tendermint/tendermint v0.34.13
github.com/tendermint/tm-db v0.6.4
google.golang.org/genproto v0.0.0-20210602131652-f16073e35f0c
google.golang.org/grpc v1.38.0
google.golang.org/grpc v1.40.0
pgregory.net/rapid v0.4.7
sigs.k8s.io/yaml v1.1.0
)

replace github.com/cosmos/cosmos-sdk => github.com/regen-network/cosmos-sdk v0.44.0-regen-2
replace github.com/cosmos/cosmos-sdk => github.com/regen-network/cosmos-sdk v0.44.2-regen-1

replace github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1

Expand Down
Loading

0 comments on commit 151c5b0

Please sign in to comment.