mirror of
				https://github.com/esphome/esphome.git
				synced 2025-10-31 15:12:06 +00:00 
			
		
		
		
	Version bump for ESP32 IDF and Arduino (#5035)
This commit is contained in:
		| @@ -163,23 +163,23 @@ RECOMMENDED_ARDUINO_FRAMEWORK_VERSION = cv.Version(2, 0, 5) | ||||
| # The platformio/espressif32 version to use for arduino frameworks | ||||
| #  - https://github.com/platformio/platform-espressif32/releases | ||||
| #  - https://api.registry.platformio.org/v3/packages/platformio/platform/espressif32 | ||||
| ARDUINO_PLATFORM_VERSION = cv.Version(5, 3, 0) | ||||
| ARDUINO_PLATFORM_VERSION = cv.Version(5, 4, 0) | ||||
|  | ||||
| # The default/recommended esp-idf framework version | ||||
| #  - https://github.com/espressif/esp-idf/releases | ||||
| #  - https://api.registry.platformio.org/v3/packages/platformio/tool/framework-espidf | ||||
| RECOMMENDED_ESP_IDF_FRAMEWORK_VERSION = cv.Version(4, 4, 4) | ||||
| RECOMMENDED_ESP_IDF_FRAMEWORK_VERSION = cv.Version(4, 4, 5) | ||||
| # The platformio/espressif32 version to use for esp-idf frameworks | ||||
| #  - https://github.com/platformio/platform-espressif32/releases | ||||
| #  - https://api.registry.platformio.org/v3/packages/platformio/platform/espressif32 | ||||
| ESP_IDF_PLATFORM_VERSION = cv.Version(5, 3, 0) | ||||
| ESP_IDF_PLATFORM_VERSION = cv.Version(5, 4, 0) | ||||
|  | ||||
|  | ||||
| def _arduino_check_versions(value): | ||||
|     value = value.copy() | ||||
|     lookups = { | ||||
|         "dev": (cv.Version(2, 1, 0), "https://github.com/espressif/arduino-esp32.git"), | ||||
|         "latest": (cv.Version(2, 0, 7), None), | ||||
|         "latest": (cv.Version(2, 0, 9), None), | ||||
|         "recommended": (RECOMMENDED_ARDUINO_FRAMEWORK_VERSION, None), | ||||
|     } | ||||
|  | ||||
| @@ -214,7 +214,7 @@ def _esp_idf_check_versions(value): | ||||
|     value = value.copy() | ||||
|     lookups = { | ||||
|         "dev": (cv.Version(5, 1, 0), "https://github.com/espressif/esp-idf.git"), | ||||
|         "latest": (cv.Version(5, 0, 1), None), | ||||
|         "latest": (cv.Version(5, 1, 0), None), | ||||
|         "recommended": (RECOMMENDED_ESP_IDF_FRAMEWORK_VERSION, None), | ||||
|     } | ||||
|  | ||||
|   | ||||
| @@ -104,7 +104,7 @@ extra_scripts = post:esphome/components/esp8266/post_build.py.script | ||||
| ; This are common settings for the ESP32 (all variants) using Arduino. | ||||
| [common:esp32-arduino] | ||||
| extends = common:arduino | ||||
| platform = platformio/espressif32@5.3.0 | ||||
| platform = platformio/espressif32@5.4.0 | ||||
| platform_packages = | ||||
|     platformio/framework-arduinoespressif32@~3.20005.0 | ||||
|  | ||||
| @@ -133,9 +133,9 @@ extra_scripts = post:esphome/components/esp32/post_build.py.script | ||||
| ; This are common settings for the ESP32 (all variants) using IDF. | ||||
| [common:esp32-idf] | ||||
| extends = common:idf | ||||
| platform = platformio/espressif32@5.3.0 | ||||
| platform = platformio/espressif32@5.4.0 | ||||
| platform_packages = | ||||
|     platformio/framework-espidf@~3.40404.0 | ||||
|     platformio/framework-espidf@~3.40405.0 | ||||
|  | ||||
| framework = espidf | ||||
| lib_deps = | ||||
|   | ||||
		Reference in New Issue
	
	Block a user