Skip to content

Commit 7f37a1f

Browse files
authored
Merge pull request #47 from KiFoundation/feature/cosmos-sdk-0.45.6
Bump cosmos-sdk to 0.45.6
2 parents 34cf136 + ed353e1 commit 7f37a1f

File tree

7 files changed

+11
-92
lines changed

7 files changed

+11
-92
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ jobs:
99
- uses: actions/checkout@v2
1010
- uses: actions/setup-go@v2
1111
with:
12-
go-version: 1.17
12+
go-version: 1.18
1313
- run: go build ./...

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
steps:
2020
- uses: actions/[email protected]
2121
with:
22-
go-version: 1.17
22+
go-version: 1.18
2323
- uses: actions/checkout@v2
2424
- uses: technote-space/[email protected]
2525
with:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ ARG IMG_TAG=latest
22
ARG PLATFORM="linux/amd64"
33

44
# Compile the kid binary
5-
FROM --platform=${PLATFORM} golang:1.17.10-alpine3.15 AS kid-builder
5+
FROM --platform=${PLATFORM} golang:1.18.0-alpine3.15 AS kid-builder
66
WORKDIR /src/app/
77
COPY go.mod go.sum* ./
88
RUN go mod download

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ This repository hosts `kid`, the implementation of the kichain protocol, based o
1313
To install Go, visit the Go download page and copy the link of the latest Go release for Linux systems, download and unzip the archive file as follows:
1414

1515
```bash
16-
wget https://dl.google.com/go/go1.17.linux-amd64.tar.gz
17-
sudo tar -C /usr/local -xzf go1.17.linux-amd64.tar.gz
16+
wget https://dl.google.com/go/go1.18.linux-amd64.tar.gz
17+
sudo tar -C /usr/local -xzf go1.18.linux-amd64.tar.gz
1818
```
1919

2020
Finally, export the Go paths like so:
@@ -35,7 +35,7 @@ go version
3535
This should output :
3636

3737
```bash
38-
go version go1.17 linux/amd64
38+
go version go1.18 linux/amd64
3939
```
4040

4141
### Build kid (linux)

contrib/Dockerfile.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# > docker build -t kitools .
33
# > docker run -it -p 46657:46657 -p 46656:46656 -v ~/.kid:/root/.kid kitools kid init
44
# > docker run -it -p 46657:46657 -p 46656:46656 -v ~/.kid:/root/.kid kitools kid start
5-
FROM golang:1.17-alpine AS build-env
5+
FROM golang:1.18-alpine AS build-env
66

77
# Set up dependencies
88
ENV PACKAGES curl make git libc-dev bash gcc linux-headers eudev-dev python3

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
module github.com/KiFoundation/ki-tools
22

3-
go 1.17
3+
go 1.18
44

55
require (
66
github.com/CosmWasm/wasmd v0.27.0
77
github.com/CosmWasm/wasmvm v1.0.0
8-
github.com/cosmos/cosmos-sdk v0.45.5
8+
github.com/cosmos/cosmos-sdk v0.45.6
99
github.com/cosmos/go-bip39 v1.0.0
1010
github.com/cosmos/ibc-go/v3 v3.0.1
1111
github.com/gorilla/mux v1.8.0

go.sum

Lines changed: 2 additions & 83 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)