Skip to content

Commit

Permalink
Use replace statements to enforce consistent versioning. (cosmos#692)
Browse files Browse the repository at this point in the history
* Use replace statements to enforce consistent versioning.

* Fix CI (I think.  Consider this a test of that.)

* Further consistency enforcement

* SDK 0.42.11 for much secure

* Update CHANGELOG.md

* Update CHANGELOG.md
  • Loading branch information
faddat committed Dec 8, 2021
1 parent 3580520 commit 9a17505
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 55 deletions.
1 change: 0 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ jobs:
- ".git"

lint:
executor: golang
docker:
- image: golangci/golangci-lint:v1.42.1-alpine
steps:
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## [Unreleased](https://github.com/CosmWasm/wasmd/tree/HEAD)

- bump github.com/cosmos/cosmos-sdk to 0.42.11
- bump github.com/cosmos/iavl to 0.17.3
- use replace to enforce consistency of versioning in imported libraries
- fixed circleci by removing the golang executor from a docker build

[Full Changelog](https://github.com/CosmWasm/wasmd/compare/v0.21.0...HEAD)

## [v0.21.0](https://github.com/CosmWasm/wasmd/tree/v0.21.0) (2021-11-17)
Expand Down
21 changes: 14 additions & 7 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ go 1.17

require (
github.com/CosmWasm/wasmvm v1.0.0-beta2
github.com/cosmos/cosmos-sdk v0.42.10
github.com/cosmos/iavl v0.17.2
github.com/cosmos/cosmos-sdk v0.42.11
github.com/cosmos/iavl v0.17.3
github.com/dvsekhvalnov/jose2go v0.0.0-20200901110807-248326c1351b
github.com/gogo/protobuf v1.3.3
github.com/golang/protobuf v1.5.2
Expand Down Expand Up @@ -39,10 +39,11 @@ require (
github.com/armon/go-metrics v0.3.8 // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/bgentry/speakeasy v0.1.0 // indirect
github.com/btcsuite/btcd v0.21.0-beta // indirect
github.com/btcsuite/btcd v0.22.0-beta // indirect
github.com/cespare/xxhash v1.1.0 // indirect
github.com/cespare/xxhash/v2 v2.1.1 // indirect
github.com/confio/ics23/go v0.6.6 // indirect
github.com/cosmos/btcutil v1.0.4 // indirect
github.com/cosmos/go-bip39 v1.0.0 // indirect
github.com/cosmos/ledger-cosmos-go v0.11.1 // indirect
github.com/cosmos/ledger-go v0.9.2 // indirect
Expand All @@ -52,7 +53,6 @@ require (
github.com/dgraph-io/ristretto v0.0.3 // indirect
github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13 // indirect
github.com/dustin/go-humanize v1.0.0 // indirect
github.com/enigmampc/btcutil v1.0.3-0.20200723161021-e2fb6adb2a25 // indirect
github.com/felixge/httpsnoop v1.0.1 // indirect
github.com/fsnotify/fsnotify v1.5.1 // indirect
github.com/go-kit/kit v0.10.0 // indirect
Expand Down Expand Up @@ -112,6 +112,13 @@ require (
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
)

replace google.golang.org/grpc => google.golang.org/grpc v1.33.2

replace github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1
replace (
github.com/confio/ics23/go => github.com/confio/ics23/go v0.6.6
github.com/cosmos/cosmos-sdk => github.com/cosmos/cosmos-sdk v0.42.11
github.com/cosmos/go-bip39 => github.com/cosmos/go-bip39 v1.0.0
github.com/cosmos/iavl => github.com/cosmos/iavl v0.17.3
github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1
github.com/tendermint/tendermint => github.com/tendermint/tendermint v0.34.14
github.com/urfave/cli => github.com/urfave/cli v1.22.1
google.golang.org/grpc => google.golang.org/grpc v1.33.2
)
Loading

0 comments on commit 9a17505

Please sign in to comment.