From 869ba2b3cdf17a05e6478f41bdfd276be573adb1 Mon Sep 17 00:00:00 2001 From: Julien Pivotto Date: Tue, 4 Aug 2020 23:31:12 +0200 Subject: [PATCH] Do not specify go version in CONTRIBUTING.md (#7742) 1. We set go1.14 in the go.mod so bad go version would yell 2. The way it is specified, its like it is only needed for dependencies. if we want the go version back in that file we should add it properly. Signed-off-by: Julien Pivotto --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 7bc20eccb..413132ce9 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -56,7 +56,7 @@ All our issues are regularly tagged so that you can also filter down the issues ## Dependency management -The Prometheus project uses [Go modules](https://golang.org/cmd/go/#hdr-Modules__module_versions__and_more) to manage dependencies on external packages. This requires a working Go environment with version 1.13 or greater installed. +The Prometheus project uses [Go modules](https://golang.org/cmd/go/#hdr-Modules__module_versions__and_more) to manage dependencies on external packages. All dependencies are vendored in the `vendor/` directory.