From 934bc01a95efc2813aa162dd4a96d8ec4f98855f Mon Sep 17 00:00:00 2001 From: Erik Schnetter Date: Wed, 28 Feb 2024 13:52:34 -0500 Subject: [PATCH] RootFS/Go: New version 1.22 (#7947) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * RootFS/Go: New version 1.21.6 * Go: New version 1.22 * Go: Prevent something fishy with the trailing zero * Update 0_RootFS/Go/build_tarballs.jl --------- Co-authored-by: Mosè Giordano --- 0_RootFS/Go/build_tarballs.jl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/0_RootFS/Go/build_tarballs.jl b/0_RootFS/Go/build_tarballs.jl index 2ca2d142a60..8d310c0b8dd 100644 --- a/0_RootFS/Go/build_tarballs.jl +++ b/0_RootFS/Go/build_tarballs.jl @@ -15,13 +15,13 @@ using BinaryBuilder include("../common.jl") name = "Go" -version = v"1.19" -version_str = "1.19" # interpolating v1.19 results in "1.19.0" +version_str = "1.22.0" +version = VersionNumber(version_str) sources = [ ArchiveSource( "https://go.dev/dl/go$(version_str).linux-amd64.tar.gz", - "464b6b66591f6cf055bc5df90a9750bf5fbc9d038722bb84a9d56a2bea974be6", + "f6c8a87aa03b92c4b0bf3d558e28ea03006eb29db78917daec5cfb6ec1046265", ) ]