From d973f9a81ab6886209308bc7ebbfecfd4d4abb8c Mon Sep 17 00:00:00 2001 From: Marius Date: Wed, 13 Oct 2021 21:40:39 +0200 Subject: [PATCH] misc: Increase Go version in go.mod The current version Go 1.12 is too old, so Heroku does not compile tusd anymore: https://github.com/tus/tusd/runs/3886723478 We use Go 1.16 and not 1.17 because we always support the two latest major releases. --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index cd9de17..c3c1e6a 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/tus/tusd -go 1.12 +go 1.16 require ( cloud.google.com/go v0.40.0