From 2f23445d405505cd757befbf1ac12073f2d7b0b9 Mon Sep 17 00:00:00 2001 From: Aliaksandr Valialkin Date: Thu, 7 Sep 2023 12:13:03 +0200 Subject: [PATCH] go.mod: increase the minimum supported Go version from Go1.19 to Go1.20 --- Makefile | 2 +- go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 182b1a0ca..69fd9961d 100644 --- a/Makefile +++ b/Makefile @@ -171,7 +171,7 @@ benchmark-pure: vendor-update: go get -u -d ./lib/... go get -u -d ./app/... - go mod tidy -compat=1.19 + go mod tidy -compat=1.20 go mod vendor app-local: diff --git a/go.mod b/go.mod index d7f4e56f3..955305f2a 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/VictoriaMetrics/VictoriaMetrics -go 1.19 +go 1.20 replace ( // Newer versions of this package break vmselect build