Skip to content

Commit 69fbcf4

Browse files
committed
Update version and prevent the release script from updating the jsons
1 parent 5424f91 commit 69fbcf4

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

Diff for: .github/scripts/on-release.sh

+11-11
Original file line numberDiff line numberDiff line change
@@ -326,17 +326,17 @@ if [ "$RELEASE_PRE" == "false" ]; then
326326
fi
327327
fi
328328

329-
# Upload package JSONs
330-
echo "Uploading $PACKAGE_JSON_DEV ..."
331-
echo "Download URL: "`git_safe_upload_asset "$OUTPUT_DIR/$PACKAGE_JSON_DEV"`
332-
echo "Pages URL: "`git_safe_upload_to_pages "$PACKAGE_JSON_DEV" "$OUTPUT_DIR/$PACKAGE_JSON_DEV"`
333-
echo
334-
if [ "$RELEASE_PRE" == "false" ]; then
335-
echo "Uploading $PACKAGE_JSON_REL ..."
336-
echo "Download URL: "`git_safe_upload_asset "$OUTPUT_DIR/$PACKAGE_JSON_REL"`
337-
echo "Pages URL: "`git_safe_upload_to_pages "$PACKAGE_JSON_REL" "$OUTPUT_DIR/$PACKAGE_JSON_REL"`
338-
echo
339-
fi
329+
# Upload package JSONs (temporary halted, until json generation is fixed)
330+
# echo "Uploading $PACKAGE_JSON_DEV ..."
331+
# echo "Download URL: "`git_safe_upload_asset "$OUTPUT_DIR/$PACKAGE_JSON_DEV"`
332+
# echo "Pages URL: "`git_safe_upload_to_pages "$PACKAGE_JSON_DEV" "$OUTPUT_DIR/$PACKAGE_JSON_DEV"`
333+
# echo
334+
# if [ "$RELEASE_PRE" == "false" ]; then
335+
# echo "Uploading $PACKAGE_JSON_REL ..."
336+
# echo "Download URL: "`git_safe_upload_asset "$OUTPUT_DIR/$PACKAGE_JSON_REL"`
337+
# echo "Pages URL: "`git_safe_upload_to_pages "$PACKAGE_JSON_REL" "$OUTPUT_DIR/$PACKAGE_JSON_REL"`
338+
# echo
339+
# fi
340340

341341
##
342342
## RELEASE NOTES

Diff for: cores/esp32/esp_arduino_version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ extern "C" {
2323
/** Minor version number (x.X.x) */
2424
#define ESP_ARDUINO_VERSION_MINOR 0
2525
/** Patch version number (x.x.X) */
26-
#define ESP_ARDUINO_VERSION_PATCH 15
26+
#define ESP_ARDUINO_VERSION_PATCH 16
2727

2828
/**
2929
* Macro to convert ARDUINO version number into an integer

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "framework-arduinoespressif32",
3-
"version": "2.0.15",
3+
"version": "2.0.16",
44
"description": "Arduino Wiring-based Framework for the Espressif ESP32, ESP32-S and ESP32-C series of SoCs",
55
"keywords": [
66
"framework",

Diff for: platform.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=ESP32 Arduino
2-
version=2.0.15
2+
version=2.0.16
33

44
tools.xtensa-esp32-elf-gcc.path={runtime.platform.path}/tools/xtensa-esp32-elf
55
tools.xtensa-esp32s2-elf-gcc.path={runtime.platform.path}/tools/xtensa-esp32s2-elf

0 commit comments

Comments
 (0)