Update core version to 3.0.1
This commit is contained in:
parent
ffeebf8da8
commit
97c98eb0cb
4 changed files with 6 additions and 6 deletions
6
.github/scripts/update-version.sh
vendored
6
.github/scripts/update-version.sh
vendored
|
|
@ -32,8 +32,8 @@ cat package.json | sed "s/.*\"version\":.*/ \"version\": \"$ESP_ARDUINO_VERSION
|
||||||
|
|
||||||
echo "Updating cores/esp32/esp_arduino_version.h..."
|
echo "Updating cores/esp32/esp_arduino_version.h..."
|
||||||
cat cores/esp32/esp_arduino_version.h | \
|
cat cores/esp32/esp_arduino_version.h | \
|
||||||
sed "s/#define ESP_ARDUINO_VERSION_MAJOR.*/#define ESP_ARDUINO_VERSION_MAJOR $ESP_ARDUINO_VERSION_MAJOR/g" | \
|
sed "s/#define ESP_ARDUINO_VERSION_MAJOR.*/#define ESP_ARDUINO_VERSION_MAJOR $ESP_ARDUINO_VERSION_MAJOR/g" | \
|
||||||
sed "s/#define ESP_ARDUINO_VERSION_MINOR.*/#define ESP_ARDUINO_VERSION_MINOR $ESP_ARDUINO_VERSION_MINOR/g" | \
|
sed "s/#define ESP_ARDUINO_VERSION_MINOR.*/#define ESP_ARDUINO_VERSION_MINOR $ESP_ARDUINO_VERSION_MINOR/g" | \
|
||||||
sed "s/#define ESP_ARDUINO_VERSION_PATCH.*/#define ESP_ARDUINO_VERSION_PATCH $ESP_ARDUINO_VERSION_PATCH/g" > __esp_arduino_version.h && mv __esp_arduino_version.h cores/esp32/esp_arduino_version.h
|
sed "s/#define ESP_ARDUINO_VERSION_PATCH.*/#define ESP_ARDUINO_VERSION_PATCH $ESP_ARDUINO_VERSION_PATCH/g" > __esp_arduino_version.h && mv __esp_arduino_version.h cores/esp32/esp_arduino_version.h
|
||||||
|
|
||||||
exit 0
|
exit 0
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,7 @@ extern "C" {
|
||||||
/** Minor version number (x.X.x) */
|
/** Minor version number (x.X.x) */
|
||||||
#define ESP_ARDUINO_VERSION_MINOR 0
|
#define ESP_ARDUINO_VERSION_MINOR 0
|
||||||
/** Patch version number (x.x.X) */
|
/** Patch version number (x.x.X) */
|
||||||
#define ESP_ARDUINO_VERSION_PATCH 0
|
#define ESP_ARDUINO_VERSION_PATCH 1
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Macro to convert ARDUINO version number into an integer
|
* Macro to convert ARDUINO version number into an integer
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "framework-arduinoespressif32",
|
"name": "framework-arduinoespressif32",
|
||||||
"version": "3.0.0",
|
"version": "3.0.1",
|
||||||
"description": "Arduino Wiring-based Framework for the Espressif ESP32, ESP32-S and ESP32-C series of SoCs",
|
"description": "Arduino Wiring-based Framework for the Espressif ESP32, ESP32-S and ESP32-C series of SoCs",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"framework",
|
"framework",
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
name=ESP32 Arduino
|
name=ESP32 Arduino
|
||||||
version=3.0.0
|
version=3.0.1
|
||||||
|
|
||||||
tools.esp32-arduino-libs.path={runtime.platform.path}/tools/esp32-arduino-libs
|
tools.esp32-arduino-libs.path={runtime.platform.path}/tools/esp32-arduino-libs
|
||||||
tools.esp32-arduino-libs.path.windows={runtime.platform.path}\tools\esp32-arduino-libs
|
tools.esp32-arduino-libs.path.windows={runtime.platform.path}\tools\esp32-arduino-libs
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue