From 445cc4f79d5cae388036388273f31369f7e29fea Mon Sep 17 00:00:00 2001 From: kolaente Date: Sun, 28 Nov 2021 12:49:15 +0100 Subject: [PATCH] fix(docs): update minimum required go version --- docs/content/doc/setup/build-from-source.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/doc/setup/build-from-source.md b/docs/content/doc/setup/build-from-source.md index 20014e008..06f83b9c9 100644 --- a/docs/content/doc/setup/build-from-source.md +++ b/docs/content/doc/setup/build-from-source.md @@ -13,7 +13,7 @@ menu: Vikunja being a go application, has no other dependencies than go itself. All libraries are bundeled inside the repo in the `vendor/` folder, so all it boils down to are these steps: -1. Make sure [Go](https://golang.org/doc/install) is properly installed on your system. You'll need at least Go `1.9`. +1. Make sure [Go](https://golang.org/doc/install) is properly installed on your system. You'll need at least Go `1.17`. 2. Make sure [Mage](https://magefile) is properly installed on your system. 3. Clone the repo with `git clone https://code.vikunja.io/api` 3. Run `mage build:build` in the source of this repo. This will build a binary in the root of the repo which will be able to run on your system.