Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

### Changes

- [#4838](https://github.com/ignite/cli/pull/4838) Bump minimum Go version to 1.24.1.

### Fixes

- [#4833](https://github.com/ignite/cli/pull/4833) IBC consensus state not found.
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/01-welcome/02-install.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Ignite CLI is supported for the following operating systems:

Ignite CLI is written in the Go programming language. To use Ignite CLI on a local system:

- Install [Go](https://golang.org/doc/install) (**version 1.24** or higher)
- Install [Go](https://golang.org/doc/install) (**version 1.24.1** or higher)
- Ensure the Go environment variables are [set properly](https://golang.org/doc/gopath_code#GOPATH) on your system

## Verify your Ignite CLI version
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/04-clients/01-go-client.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ To import dependencies for your package, you can add the following code to the
```text title="blogclient/go.mod"
module blogclient

go 1.24
go 1.24.1

require (
blog v0.0.0-00010101000000-000000000000
Expand Down
2 changes: 1 addition & 1 deletion docs/versioned_docs/version-v29/01-welcome/02-install.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Ignite CLI is supported for the following operating systems:

Ignite CLI is written in the Go programming language. To use Ignite CLI on a local system:

- Install [Go](https://golang.org/doc/install) (**version 1.24** or higher)
- Install [Go](https://golang.org/doc/install) (**version 1.24.1** or higher)
- Ensure the Go environment variables are [set properly](https://golang.org/doc/gopath_code#GOPATH) on your system

## Verify your Ignite CLI version
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ To import dependencies for your package, you can add the following code to the
```text title="blogclient/go.mod"
module blogclient

go 1.24
go 1.24.1

require (
blog v0.0.0-00010101000000-000000000000
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/ignite/cli/v29

go 1.24.0
go 1.24.1

require (
cosmossdk.io/core v0.11.3
Expand Down
2 changes: 1 addition & 1 deletion ignite/internal/plugin/testdata/execute_fail/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module execute_fail

go 1.24.0
go 1.24.1

replace github.com/ignite/cli/v29 => ../../../../..

Expand Down
2 changes: 1 addition & 1 deletion ignite/internal/plugin/testdata/execute_ok/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module execute_ok

go 1.24.0
go 1.24.1

replace github.com/ignite/cli/v29 => ../../../../..

Expand Down
2 changes: 1 addition & 1 deletion ignite/internal/tools/gen-config-doc/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/ignite/cli/ignite/internal/tools/gen-config-doc

go 1.24.0
go 1.24.1

replace github.com/ignite/cli/v29 => ../../../../

Expand Down
2 changes: 1 addition & 1 deletion ignite/templates/app/files/go.mod.plush
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module <%= ModulePath %>

go 1.24.0
go 1.24.1

replace (
// fix upstream GHSA-h395-qcrw-5vmq vulnerability.
Expand Down
2 changes: 1 addition & 1 deletion integration/plugin/testdata/example-plugin/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module example-plugin

go 1.24.0
go 1.24.1

replace github.com/ignite/cli/v29 => ../../../../

Expand Down