Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Steinhardt <psteinhardt@gitlab.com>2021-04-12 09:07:09 +0300
committerPatrick Steinhardt <psteinhardt@gitlab.com>2021-04-20 09:01:34 +0300
commita2a226ee65cd7dbd1a4e95f4411525cdb0139689 (patch)
treeb520bb2a8657f5c7f6869f2ffabf16ca80f44dfc
parent0f93ceb8a8ccfe38ee3fde399efcb49aa91cbedd (diff)
go.mod: Upgrade minimum required Go version to 1.15
As per our Golang policy, we always support the latest two Go versions which have been released. Nowadays, this is Go 1.15 and 1.16, so let's upgrade our go.mod file to require at least Go 1.15.
-rw-r--r--changelogs/unreleased/pks-go-1-16.yml5
-rw-r--r--go.mod2
2 files changed, 6 insertions, 1 deletions
diff --git a/changelogs/unreleased/pks-go-1-16.yml b/changelogs/unreleased/pks-go-1-16.yml
new file mode 100644
index 000000000..ffbd01911
--- /dev/null
+++ b/changelogs/unreleased/pks-go-1-16.yml
@@ -0,0 +1,5 @@
+---
+title: Upgrade minimum required Go version to 1.15
+merge_request: 3352
+author:
+type: deprecated
diff --git a/go.mod b/go.mod
index ac8a2347b..eb913f565 100644
--- a/go.mod
+++ b/go.mod
@@ -50,4 +50,4 @@ require (
gopkg.in/yaml.v2 v2.4.0 // indirect
)
-go 1.14
+go 1.15