From 6a65f9c62cf0c6b434349238c77f7308bfcda7b7 Mon Sep 17 00:00:00 2001 From: Jacob Gadikian Date: Mon, 20 May 2024 02:59:51 +0800 Subject: [PATCH] chore: update go (#4157) --- Dockerfile | 2 +- changelog.md | 1 + go.mod | 4 ++-- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 916a40b451..9617fa193b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ ## prep the base image. # -FROM golang:1.21.5 as base +FROM golang as base RUN apt update && \ apt-get install -y \ diff --git a/changelog.md b/changelog.md index b527cfcaea..cf8cca8401 100644 --- a/changelog.md +++ b/changelog.md @@ -21,6 +21,7 @@ ### Changes +- [#4157](https://github.com/ignite/cli/pull/4157) Upgrade golang to 1.22 - [#4094](https://github.com/ignite/cli/pull/4094) Scaffolding a multi-index map using `ignite s map foo bar baz --index foobar,foobaz` is no longer supported. Use one index instead of use `collections.IndexedMap`. - [#4058](https://github.com/ignite/cli/pull/4058) Simplify scaffolded modules by including `ValidateBasic()` logic in message handler. - [#4058](https://github.com/ignite/cli/pull/4058) Use `address.Codec` instead of `AccAddressFromBech32`. diff --git a/go.mod b/go.mod index f61028efdc..18832c9935 100644 --- a/go.mod +++ b/go.mod @@ -1,8 +1,8 @@ module github.com/ignite/cli/v29 -go 1.21.1 +go 1.22 -toolchain go1.21.3 +toolchain go1.22.2 replace ( github.com/99designs/keyring => github.com/cosmos/keyring v1.2.0