From 9be5b0f4fc7b59b6fdc36b194d7534e9bc84c507 Mon Sep 17 00:00:00 2001 From: Wilken Rivera Date: Mon, 31 Jul 2023 20:56:29 -0400 Subject: [PATCH] Bump Go module minimum version to 1.19 In go 1.19 changes to go fmt resulted in slightly different comment formatting for generated code. Bumping to Go 1.19 ensures that the correct version of Go tooling is used formatting the generated code. --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index f2c9096b9..de1f50371 100644 --- a/go.mod +++ b/go.mod @@ -118,4 +118,4 @@ require ( google.golang.org/protobuf v1.28.1 // indirect ) -go 1.18 +go 1.19