From a95fabf367737a4fd03ad7220bf39c2f555daa3c Mon Sep 17 00:00:00 2001 From: graham sanderson Date: Sun, 24 Nov 2024 20:37:04 -0600 Subject: [PATCH] Update picotool dependency to 2.1.0 (not strictly required, but we prefer people to be on the latest) --- MODULE.bazel | 2 +- tools/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/MODULE.bazel b/MODULE.bazel index 79aee07fc..9cdcce3b2 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -6,7 +6,7 @@ module( bazel_dep(name = "platforms", version = "0.0.9") bazel_dep(name = "bazel_skylib", version = "1.6.1") bazel_dep(name = "rules_python", version = "0.36.0") -bazel_dep(name = "picotool", version = "2.0.0") +bazel_dep(name = "picotool", version = "2.1.0") bazel_dep(name = "rules_cc", version = "0.0.10") http_archive = use_repo_rule("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") diff --git a/tools/CMakeLists.txt b/tools/CMakeLists.txt index 5eef0f154..aa7dbcb00 100644 --- a/tools/CMakeLists.txt +++ b/tools/CMakeLists.txt @@ -101,7 +101,7 @@ endfunction() # Check picotool is installed, or download and build it if not installed function(pico_init_picotool) - set(picotool_VERSION_REQUIRED 2.0.0) + set(picotool_VERSION_REQUIRED 2.1.0) if (NOT TARGET picotool AND NOT DEFINED picotool_FOUND) # Build path of local install dir if (DEFINED ENV{PICOTOOL_FETCH_FROM_GIT_PATH} AND (NOT PICOTOOL_FETCH_FROM_GIT_PATH))