From dd1e20b3c281940c5b5783151b24cf6ceeb31ca3 Mon Sep 17 00:00:00 2001 From: Michael Kubacki Date: Fri, 16 Sep 2022 15:44:27 -0400 Subject: [PATCH] nasm_ext_dep.yaml: Remove leading zero in patch version The patch version is currently: "2.15.05" When a formal semantic version validator is run against this version it is recognized as being invalid due to the leading zero in the patch which is not allowed per the Semantic Versioning Specification: https://semver.org/#spec-item-2 The NuGet Gallery already reports the version without the leading zero: https://www.nuget.org/packages/mu_nasm/2.15.5 This change simply removes the leading zero to prevent code such as https://pypi.org/project/semantic-version/ from reporting a version error. Cc: Bob Feng Cc: Liming Gao Cc: Yuwei Chen Cc: Sean Brogan Cc: Michael D Kinney Signed-off-by: Michael Kubacki Reviewed-by: Michael D Kinney --- BaseTools/Bin/nasm_ext_dep.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BaseTools/Bin/nasm_ext_dep.yaml b/BaseTools/Bin/nasm_ext_dep.yaml index 7a56dd2b8b..56703d4c18 100644 --- a/BaseTools/Bin/nasm_ext_dep.yaml +++ b/BaseTools/Bin/nasm_ext_dep.yaml @@ -13,6 +13,6 @@ "type": "nuget", "name": "mu_nasm", "source": "https://api.nuget.org/v3/index.json", - "version": "2.15.05", + "version": "2.15.5", "flags": ["set_path", "host_specific"] } -- 2.39.2