From 4f407fceaf92beff7159b9b33f5f8b9b2e2915fb Mon Sep 17 00:00:00 2001 From: Xiaoguang Wang Date: Sat, 21 Aug 2021 18:12:57 +0800 Subject: [PATCH] There are many usage of `io.Discard`(Since Go 1.16, Feb 2021) in code, so go version should be at least 1.16 now. --- README.md | 2 +- go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b2a147471e57..a10c009df37c 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,7 @@ or if sqlite support is required: The `build` target is split into two sub-targets: -- `make backend` which requires [Go 1.13](https://golang.org/dl/) or greater. +- `make backend` which requires [Go 1.16](https://golang.org/dl/) or greater. - `make frontend` which requires [Node.js 12.17](https://nodejs.org/en/download/) or greater and Internet connectivity to download npm dependencies. When building from the official source tarballs which include pre-built frontend files, the `frontend` target will not be triggered, making it possible to build without Node.js and Internet connectivity. diff --git a/go.mod b/go.mod index 1a3749c05ddf..1c974aa6f50c 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module code.gitea.io/gitea -go 1.14 +go 1.16 require ( cloud.google.com/go v0.78.0 // indirect