From 02848a4d0a650946a515d70648a1137be8555612 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Sep 2024 11:03:08 +0000 Subject: [PATCH 1/2] build(deps): Bump cosmossdk.io/core Bumps [cosmossdk.io/core](https://github.com/cosmos/cosmos-sdk) from 0.12.1-0.20240813134434-072a29c838a5 to 1.0.0-alpha.1. - [Release notes](https://github.com/cosmos/cosmos-sdk/releases) - [Changelog](https://github.com/cosmos/cosmos-sdk/blob/main/CHANGELOG.md) - [Commits](https://github.com/cosmos/cosmos-sdk/commits/orm/v1.0.0-alpha.1) --- updated-dependencies: - dependency-name: cosmossdk.io/core dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- go.mod | 3 ++- go.sum | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index dcb9919df..c046eed73 100644 --- a/go.mod +++ b/go.mod @@ -1,9 +1,10 @@ module github.com/cosmos/iavl go 1.21 +toolchain go1.23.1 require ( - cosmossdk.io/core v0.12.1-0.20240813134434-072a29c838a5 + cosmossdk.io/core v1.0.0-alpha.1 github.com/cosmos/ics23/go v0.11.0 github.com/emicklei/dot v1.6.2 github.com/gogo/protobuf v1.3.2 diff --git a/go.sum b/go.sum index af2579f23..30c9b4a40 100644 --- a/go.sum +++ b/go.sum @@ -1,5 +1,5 @@ -cosmossdk.io/core v0.12.1-0.20240813134434-072a29c838a5 h1:aIfrfJUronk2qHPH4N7M5nGzijdSWkRwHHqqPGnQBrk= -cosmossdk.io/core v0.12.1-0.20240813134434-072a29c838a5/go.mod h1:B8JQN1vmGCPSVFlmRb/22n1T736P4C2qfEsrSKDX1iM= +cosmossdk.io/core v1.0.0-alpha.1 h1:iElkDJhxmy51aLMSLMZcfsqcv4QG4/1UHbHiW8Llw6k= +cosmossdk.io/core v1.0.0-alpha.1/go.mod h1:abgLjeFLhtuKIYZWSPlVUgQBrKObO7ULV35KYfexE90= github.com/cosmos/gogoproto v1.7.0 h1:79USr0oyXAbxg3rspGh/m4SWNyoz/GLaAh0QlCe2fro= github.com/cosmos/gogoproto v1.7.0/go.mod h1:yWChEv5IUEYURQasfyBW5ffkMHR/90hiHgbNgrtp4j0= github.com/cosmos/ics23/go v0.11.0 h1:jk5skjT0TqX5e5QJbEnwXIS2yI2vnmLOgpQPeM5RtnU= From ab314b36b18e339ae36ceee2ca5a9613bc4ad201 Mon Sep 17 00:00:00 2001 From: Julien Robert Date: Mon, 9 Sep 2024 22:35:39 +0200 Subject: [PATCH 2/2] updates --- .github/workflows/benchmarks.yml | 2 +- .github/workflows/ci.yml | 2 +- .github/workflows/lint.yml | 2 +- go.mod | 3 +-- 4 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/benchmarks.yml b/.github/workflows/benchmarks.yml index fad5a91a3..4cfda5292 100644 --- a/.github/workflows/benchmarks.yml +++ b/.github/workflows/benchmarks.yml @@ -14,6 +14,6 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: '1.20' # The Go version to download (if necessary) and use. + go-version: "1.23" # The Go version to download (if necessary) and use. - name: run benchmarks run: make bench diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fd437a474..0691820c6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.21" # The Go version to download (if necessary) and use. + go-version: "1.23" # The Go version to download (if necessary) and use. # Some tests, notably TestRandomOperations, are extremely slow in CI # with the race detector enabled, so we use -short when -race is diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index b74e8c6ae..d59d36dba 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -15,7 +15,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "^1.20.0" + go-version: "1.23" - name: golangci-lint uses: golangci/golangci-lint-action@v6 with: diff --git a/go.mod b/go.mod index c046eed73..1d1d89efc 100644 --- a/go.mod +++ b/go.mod @@ -1,7 +1,6 @@ module github.com/cosmos/iavl -go 1.21 -toolchain go1.23.1 +go 1.23 require ( cosmossdk.io/core v1.0.0-alpha.1