From c21636af0e28c342585f7f9402f9df2cc73ec4e5 Mon Sep 17 00:00:00 2001 From: Martijn Visser Date: Fri, 22 Sep 2023 16:42:04 +0200 Subject: [PATCH] [GDAL] fix version_offset See https://github.com/JuliaPackaging/Yggdrasil/pull/7050#discussion_r1334462064 Registration of the previous version was blocked: https://github.com/JuliaRegistries/General/pull/91991 --- G/GDAL/build_tarballs.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/G/GDAL/build_tarballs.jl b/G/GDAL/build_tarballs.jl index 602f414501e..6cbc918c17f 100644 --- a/G/GDAL/build_tarballs.jl +++ b/G/GDAL/build_tarballs.jl @@ -4,7 +4,7 @@ using BinaryBuilder, Pkg name = "GDAL" upstream_version = v"3.7.2" -version_offset = v"0.0.0" +version_offset = v"1.0.0" version = VersionNumber(upstream_version.major * 100 + version_offset.major, upstream_version.minor * 100 + version_offset.minor, upstream_version.patch * 100 + version_offset.patch)