Skip to content

Commit

Permalink
Go 1.17 provides a much clearer go.mod file (CosmWasm#679)
Browse files Browse the repository at this point in the history
* Go 1.17 provides a much clearer go.mod file

* tidy

* Go 1.17 cleanup
  • Loading branch information
faddat committed Nov 27, 2021
1 parent bdc86e8 commit 2b72fe2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: 2.1
executors:
golang:
docker:
- image: circleci/golang:1.16
- image: circleci/golang:1.17
working_directory: /go/src/github.com/cosmwasm/wasmd

commands:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# docker build . -t cosmwasm/wasmd:latest
# docker run --rm -it cosmwasm/wasmd:latest /bin/sh
FROM golang:1.16.8-alpine3.13 AS go-builder
FROM golang:1.17.3-alpine AS go-builder

# this comes from standard alpine nightly file
# https://github.com/rust-lang/docker-rust-nightly/blob/master/alpine3.12/Dockerfile
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ This code was forked from the `cosmos/gaia` repository as a basis and then we ad
many gaia-specific files. However, the `wasmd` binary should function just like `gaiad` except for the
addition of the `x/wasm` module.

**Note**: Requires [Go 1.16.8+](https://golang.org/dl/)
**Note**: Requires [Go 1.17+](https://golang.org/dl/)

## Compatibility with CosmWasm contracts

Expand Down
2 changes: 1 addition & 1 deletion contrib/prototools-docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ RUN GO111MODULE=on go get \

RUN upx --lzma /usr/local/bin/*

FROM golang:1.16.8-alpine3.13
FROM golang:1.17.3-alpine
ENV LD_LIBRARY_PATH=/lib64:/lib

WORKDIR /work
Expand Down

0 comments on commit 2b72fe2

Please sign in to comment.