From cdba092549bcb31d00ef095ec185b6ece0ccbcb5 Mon Sep 17 00:00:00 2001 From: Aliaksandr Valialkin Date: Wed, 17 Aug 2022 21:09:16 +0300 Subject: [PATCH] go.mod: bump minimum supported Go version from 1.12 to 1.15 This is needed in order to support `net/url.URL.Redacted()` method used in push.go This method appeared in Go1.15 - see https://tip.golang.org/doc/go1.15 --- go.mod | 2 +- vendor/modules.txt | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 1202ec8..d72c0a4 100644 --- a/go.mod +++ b/go.mod @@ -2,4 +2,4 @@ module github.com/VictoriaMetrics/metrics require github.com/valyala/histogram v1.2.0 -go 1.12 +go 1.15 diff --git a/vendor/modules.txt b/vendor/modules.txt index 3852fff..a9abcf8 100644 --- a/vendor/modules.txt +++ b/vendor/modules.txt @@ -1,4 +1,5 @@ # github.com/valyala/fastrand v1.1.0 github.com/valyala/fastrand # github.com/valyala/histogram v1.2.0 +## explicit github.com/valyala/histogram