From 02aeabc8ff51944faef8e6dec93a1718bf66ae48 Mon Sep 17 00:00:00 2001 From: per1234 Date: Sat, 30 Dec 2023 06:54:01 -0800 Subject: [PATCH] Bump built-in example sketches version to 1.10.1 The Arduino IDE installation includes a collection of example sketches demonstrating fundamental concepts. These examples are hosted in a dedicated repository, which is a dependency of this project. A new release has been made in that `arduino/arduino-examples` repository. The infrastructure for downloading the examples during the Arduino IDE build is hereby updated to use the latest release of the `arduino/arduino-examples` repository. --- arduino-ide-extension/scripts/download-examples.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arduino-ide-extension/scripts/download-examples.js b/arduino-ide-extension/scripts/download-examples.js index 029517d43..557c34089 100644 --- a/arduino-ide-extension/scripts/download-examples.js +++ b/arduino-ide-extension/scripts/download-examples.js @@ -1,7 +1,7 @@ // @ts-check // The version to use. -const version = '1.10.0'; +const version = '1.10.1'; (async () => { const os = require('node:os');