From 62c973eba664ad1daf6ba843e28b3c14f787a9b8 Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Fri, 11 Nov 2022 13:11:24 +0100 Subject: [PATCH] go.mod: minimum Go version 1.18 (#26160) This will allow use of generics and other new standard library APIs such as package net/netip. --- README.md | 2 +- go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 550600128..59fcd4a12 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ archives are published at https://geth.ethereum.org/downloads/. For prerequisites and detailed build instructions please read the [Installation Instructions](https://geth.ethereum.org/docs/install-and-build/installing-geth). -Building `geth` requires both a Go (version 1.16 or later) and a C compiler. You can install +Building `geth` requires both a Go (version 1.18 or later) and a C compiler. You can install them using your favourite package manager. Once the dependencies are installed, run ```shell diff --git a/go.mod b/go.mod index 0eaa65c0b..01c5e07bb 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/ethereum/go-ethereum -go 1.17 +go 1.18 require ( github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v0.3.0