From e5eb2d72a8c8feee586e4187b53a6f31faba2f50 Mon Sep 17 00:00:00 2001 From: Dan Anglin Date: Wed, 3 Jul 2024 23:25:22 +0100 Subject: [PATCH] fix: set minimum go version to 1.22.5 --- docs/installation.md | 2 +- go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/installation.md b/docs/installation.md index 5b8ea3d..b0eb959 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -14,7 +14,7 @@ Pre-built binaries will soon be available on the release page on both Codeberg a ### Build requirements -- **Go:** A minimum version of Go 1.22.0 is required for installing spruce. +- **Go:** A minimum version of Go 1.22.5 is required for installing spruce. Please go [here](https://go.dev/dl/) to download the latest version. - **Mage (Optional):** The project includes mage targets for building and installing the binary. The main diff --git a/go.mod b/go.mod index 4675040..5ec9927 100644 --- a/go.mod +++ b/go.mod @@ -4,6 +4,6 @@ module codeflow.dananglin.me.uk/apollo/enbas -go 1.22.0 +go 1.22.5 require golang.org/x/net v0.26.0