Skip to content

Commit b5af607

Browse files
committed
bump SDK version to 2.1.1 and update picotool dependency since 2.1.1 is faster
1 parent 6a7b4c7 commit b5af607

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

MODULE.bazel

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
module(
22
name = "pico-sdk",
3-
version = "2.1.1-develop",
3+
version = "2.1.1",
44
)
55

66
bazel_dep(name = "platforms", version = "0.0.9")
77
bazel_dep(name = "bazel_skylib", version = "1.6.1")
88
bazel_dep(name = "rules_python", version = "0.36.0")
9-
bazel_dep(name = "picotool", version = "2.1.0")
9+
bazel_dep(name = "picotool", version = "2.1.1")
1010
bazel_dep(name = "rules_cc", version = "0.0.10")
1111

1212
http_archive = use_repo_rule("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

pico_sdk_version.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ set(PICO_SDK_VERSION_MINOR 1)
99
set(PICO_SDK_VERSION_REVISION 1)
1010
# PICO_BUILD_DEFINE: PICO_SDK_VERSION_PRE_RELEASE_ID, Optional SDK pre-release version identifier, default=Current SDK pre-release identifier, type=string, group=pico_base
1111
# PICO_CMAKE_CONFIG: PICO_SDK_VERSION_PRE_RELEASE_ID, Optional SDK pre-release version identifier, default=Current SDK pre-release identifier, type=string, group=pico_base
12-
set(PICO_SDK_VERSION_PRE_RELEASE_ID develop)
12+
# set(PICO_SDK_VERSION_PRE_RELEASE_ID develop)
1313

1414
# PICO_BUILD_DEFINE: PICO_SDK_VERSION_STRING, SDK version string, type=string, default=Current SDK version string, group=pico_base
1515
# PICO_CMAKE_CONFIG: PICO_SDK_VERSION_STRING, SDK version string, type=string, default=Current SDK version string, group=pico_base

tools/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ endfunction()
101101

102102
# Check picotool is installed, or download and build it if not installed
103103
function(pico_init_picotool)
104-
set(picotool_VERSION_REQUIRED 2.1.0)
104+
set(picotool_VERSION_REQUIRED 2.1.1)
105105
if (NOT TARGET picotool AND NOT DEFINED picotool_FOUND)
106106
# Build path of local install dir
107107
if (DEFINED ENV{PICOTOOL_FETCH_FROM_GIT_PATH} AND (NOT PICOTOOL_FETCH_FROM_GIT_PATH))

0 commit comments

Comments
 (0)