This is an automated email from the ASF dual-hosted git repository. mgrigorov pushed a commit to branch docs-build-fixes in repository https://gitbox.apache.org/repos/asf/avro.git
commit c9bd2e180d23f9171ecb12b7bb08711898d64233 Author: Martin Tzvetanov Grigorov <[email protected]> AuthorDate: Thu Aug 22 09:50:56 2024 +0300 Set Go version to 1.22 Fixes the following error: ``` ❯ go mod download go: errors parsing go.mod: /home/martin/git/apache/avro/doc/go.mod:20: invalid go version '1.22.6': must match format 1.23 ``` Signed-off-by: Martin Tzvetanov Grigorov <[email protected]> --- doc/go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/go.mod b/doc/go.mod index 6a69a014b..283728480 100644 --- a/doc/go.mod +++ b/doc/go.mod @@ -17,7 +17,7 @@ module github.com/apache/avro -go 1.22.6 +go 1.22 require ( github.com/FortAwesome/Font-Awesome v0.0.0-20240402185447-c0f460dca7f7 // indirect
