actgardner / gogen-avro

Generate Go code to serialize and deserialize Avro schemas
MIT License
365 stars 85 forks source link

Update go mod to v1.17 #180

Closed lukasleung closed 2 years ago

lukasleung commented 2 years ago

Updates the mod version to v1.17.

Note: The pipeline is already running unit tests using v1.17.2.

How this was done:

cd v10
go mod edit -go=1.17
go mod tidy
./test.sh
# runs the following
#  go install ./cmd/...
#  go generate ./...
#  go get -t -v -u ./...
#  go test ./...
lukasleung commented 2 years ago

@actgardner I can also update the pipeline to use the latest stable version if that is preferred 👍 Please let me know!

The latest stable version would be 1.17.6 at the time of this MR: https://go.dev/dl/

One callout though while looking at the circleci/golang images, 1.17.5 may be the most recently available image there. Unsure if you are open to switching to using the official golang images

actgardner commented 2 years ago

This LGTM, thanks @lukasleung!