Skip to content

Commit 567846b

Browse files
authored
Bump minimun Go version to 1.24 (#629)
1 parent 8c63558 commit 567846b

File tree

10 files changed

+12
-12
lines changed

10 files changed

+12
-12
lines changed

.github/workflows/api_diff_check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Set up Go 1.x
2020
uses: actions/setup-go@v2
2121
with:
22-
go-version: "1.23"
22+
go-version: "1.24"
2323
id: go
2424

2525
- name: Check out code into the Go module directory

.github/workflows/codegen.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
matrix:
1818
os: [ubuntu-latest]
19-
go-version: ["1.23"]
19+
go-version: ["1.24"]
2020
env:
2121
JAVA_TOOL_OPTIONS: "-Xmx2g"
2222
steps:

.github/workflows/go.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
matrix:
1818
os: [ubuntu-latest, macos-latest, windows-latest]
19-
go-version: ["1.23", "1.24", "1.25"]
19+
go-version: ["1.24", "1.25", "1.26"]
2020
steps:
2121
- uses: actions/checkout@v2
2222

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
[Smithy](https://smithy.io/) code generators for Go and the accompanying smithy-go runtime.
66

7-
The smithy-go runtime requires a minimum version of Go 1.23.
7+
The smithy-go runtime requires a minimum version of Go 1.24.
88

99
**WARNING: All interfaces are subject to change.**
1010

@@ -80,7 +80,7 @@ example created from `smithy init`:
8080
"service": "example.weather#Weather",
8181
"module": "github.com/example/weather",
8282
"generateGoMod": true,
83-
"goDirective": "1.23"
83+
"goDirective": "1.24"
8484
}
8585
}
8686
}

aws-http-auth/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module github.com/aws/smithy-go/aws-http-auth
22

3-
go 1.23
3+
go 1.24

codegen/smithy-go-codegen-test/smithy-build.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
"module": "github.com/aws/smithy-go/internal/tests/service/weather",
77
"moduleVersion": "0.0.1",
88
"generateGoMod": true,
9-
"goDirective": "1.23"
9+
"goDirective": "1.24"
1010
},
1111
"go-server-codegen": {
1212
"service": "example.weather#Weather",
1313
"module": "github.com/aws/smithy-go/internal/tests/server/weather",
1414
"moduleVersion": "0.0.1",
1515
"generateGoMod": true,
16-
"goDirective": "1.23"
16+
"goDirective": "1.24"
1717
}
1818
}
1919
}

codegen/smithy-go-codegen/src/main/java/software/amazon/smithy/go/codegen/GoModuleInfo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
public final class GoModuleInfo {
2929

30-
public static final String DEFAULT_GO_DIRECTIVE = "1.23";
30+
public static final String DEFAULT_GO_DIRECTIVE = "1.24";
3131

3232
private List<SymbolDependency> dependencies;
3333

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module github.com/aws/smithy-go
22

3-
go 1.23
3+
go 1.24

metrics/smithyotelmetrics/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/aws/smithy-go/metrics/smithyotelmetrics
22

3-
go 1.23
3+
go 1.24
44

55
require (
66
github.com/aws/smithy-go v1.24.1

tracing/smithyoteltracing/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/aws/smithy-go/tracing/smithyoteltracing
22

3-
go 1.23
3+
go 1.24
44

55
require (
66
github.com/aws/smithy-go v1.24.1

0 commit comments

Comments
 (0)