From ec1ff57b6aab202a320b96db39591d68396ceb7f Mon Sep 17 00:00:00 2001 From: Saleem Abdulrasool Date: Wed, 11 Jun 2025 11:18:24 -0700 Subject: [PATCH] build: update the pinned version of swift-argument-parser Update the pinned version of swift-argument-parser in the CMakeLists.txt. This fully migrates the package over to the new swift-argument-parser release. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3492f63a3..d334d7ff8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -56,7 +56,7 @@ if(NOT ArgumentParser_FOUND) message("-- Vending swift-argument-parser") FetchContent_Declare(ArgumentParser GIT_REPOSITORY https://github.com/apple/swift-argument-parser - GIT_TAG 1.2.3) + GIT_TAG 1.5.1) list(APPEND VendoredDependencies ArgumentParser) endif()