build(deps): use Go 1.23 instead of Go 1.22 (#21280)

This commit is contained in:
Julien Robert
2024-08-15 08:43:08 +00:00
committed by GitHub
parent 0fe3115dcf
commit 819330872c
70 changed files with 174 additions and 172 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ module cosmossdk.io/core
// Core is meant to have zero dependencies, so we can use it as a dependency
// in other modules without having to worry about circular dependencies.
go 1.20
go 1.23
// Version tagged too early and incompatible with v0.50 (latest at the time of tagging)
retract v0.12.0
+2 -2
View File
@@ -1,10 +1,10 @@
module cosmossdk.io/core/testing
go 1.20
go 1.23
replace cosmossdk.io/core => ../
require (
cosmossdk.io/core v0.12.0
cosmossdk.io/core v1.0.0
github.com/tidwall/btree v1.7.0
)