From 2fc820f14139ce96bd77e9c11b5bda90d0c56906 Mon Sep 17 00:00:00 2001 From: Marko Bencun Date: Wed, 9 Oct 2024 10:46:21 +0200 Subject: [PATCH] bump minimum platform support to Windows 10, macOS 10.15 We upgraded to Go 1.22 a while ago: https://go.dev/wiki/MinimumRequirements > For Go 1.21 and later: Windows 10 and higher or Windows Server 2016 > and higher. > Go 1.21 and later will support macOS Catalina 10.15 or newer; see https://go.dev/doc/go1.20#darwin. See also: - https://github.com/golang/go/issues/57003 - https://github.com/golang/go/issues/57125 - https://github.com/golang/go/issues/64622#issuecomment-1847475161 Windows 7 has oficially been EOL'd in Jan 2020, almost 5 years ago. It is reasonable to not officially support it. --- docs/BUILD.md | 4 ++-- env.mk.inc | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/BUILD.md b/docs/BUILD.md index 487b7387c8..e4c8e1a988 100644 --- a/docs/BUILD.md +++ b/docs/BUILD.md @@ -6,8 +6,8 @@ Wallet application. * Debian: 11 bullseye or newer * Ubuntu: 20.04+ * Fedora: 36+ -* MacOS: 10.13+ -* Windows: Windows 7+ +* MacOS: 10.15+ +* Windows: Windows 10+ ## Debian, Ubuntu, and Fedora GNU/Linux with Docker diff --git a/env.mk.inc b/env.mk.inc index c12d677a84..83c586ede1 100644 --- a/env.mk.inc +++ b/env.mk.inc @@ -1,2 +1,2 @@ LIBNAME=libserver -MACOS_MIN_VERSION := 10.11 +MACOS_MIN_VERSION := 10.15