From 0f19dcdff8f929d0130921bfb4705d06b2d406e6 Mon Sep 17 00:00:00 2001 From: Theo Arends <11044339+arendst@users.noreply.github.com> Date: Thu, 18 Apr 2024 14:01:27 +0200 Subject: [PATCH] Bump version v13.4.1.2 - ESP32-C3 OTA binary name from `tasmota32c3cdc.bin` to `tasmota32c3.bin` with USB HWCDC and fallback to serial (#21212) - ESP32-C6 OTA binary name from `tasmota32c6cdc.bin` to `tasmota32c6.bin` with USB HWCDC and fallback to serial (#21212) - ESP32-S3 OTA binary name from `tasmota32s3cdc.bin` to `tasmota32s3.bin` with USB HWCDC and fallback to serial (#21212) --- CHANGELOG.md | 18 ++++++++++++++++-- RELEASENOTES.md | 15 +++++++++++---- tasmota/include/tasmota_version.h | 2 +- 3 files changed, 28 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8de867664..d31d91c63 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,17 +3,31 @@ All notable changes to this project will be documented in this file. ## [Unreleased] - Development -## [13.4.1.1] +## [13.4.1.2] +### Added + +### Breaking Changed +- ESP32-C3 OTA binary name from `tasmota32c3cdc.bin` to `tasmota32c3.bin` with USB HWCDC and fallback to serial (#21212) +- ESP32-C6 OTA binary name from `tasmota32c6cdc.bin` to `tasmota32c6.bin` with USB HWCDC and fallback to serial (#21212) +- ESP32-S3 OTA binary name from `tasmota32s3cdc.bin` to `tasmota32s3.bin` with USB HWCDC and fallback to serial (#21212) + +### Changed + +### Fixed + +### Removed + +## [13.4.1.1] 20240418 ### Added - HASPmota `dropdown_list` and fixes (#21208) - Support for SPL06_007 pressure and temperature sensor (#21185) ### Breaking Changed +- ESP32 Ethernet Phy Type number for DM9051 from 4 to 10 (#21204) ### Changed - ESP32 Framework (Arduino Core) from v2.0.15 to v3.0.0 (#21180) - ESP32 Core3 platform update from 2024.04.11 to 2024.04.12 (#21199) -- ESP32 Ethernet Phy Type number for DM9051 from 4 to 10 (#21204) ### Fixed - HASPmota dropdown class "options" attribute (#21203) diff --git a/RELEASENOTES.md b/RELEASENOTES.md index eddcb8b99..01cad3a12 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -83,9 +83,13 @@ The latter links can be used for OTA upgrades too like ``OtaUrl http://ota.tasmo The following binary downloads have been compiled with ESP32/Arduino library core version **3.0.0**. - **tasmota32.bin** = The Tasmota version with most drivers including additional sensors and KNX for 4M+ flash. **RECOMMENDED RELEASE BINARY** -- **tasmota32xy.bin** = The Tasmota version with most drivers including additional sensors and KNX for ESP32-C2/C3/C6/S2/S3 and 4M+ flash. -- **tasmota32xycdc.bin** = The Tasmota version with most drivers including additional sensors and KNX for ESP32-C2/C3/C6/S2/S3 with serial over embedded USB CDC only and 4M+ flash. - **tasmota32solo1.bin** = The Tasmota version with most drivers including additional sensors and KNX for single core ESP32 and 4M+ flash. +- **tasmota32s2.bin** = The Tasmota version with most drivers including additional sensors and KNX for ESP32-S2 with serial and 4M+ flash. +- **tasmota32s2cdc.bin** = The Tasmota version with most drivers including additional sensors and KNX for ESP32-S2 with serial over embedded USB CDC only and 4M+ flash. +- **tasmota32s3.bin** = The Tasmota version with most drivers including additional sensors and KNX for ESP32-S3 with USB HWCDC and fallback to serial and 4M+ flash. +- **tasmota32c2.bin** = The Tasmota version with most drivers including additional sensors and KNX for ESP32-C2 with serial and 4M+ flash. +- **tasmota32c3.bin** = The Tasmota version with most drivers including additional sensors and KNX for ESP32-C2 with USB HWCDC and fallback to serial and 4M+ flash. +- **tasmota32c6.bin** = The Tasmota version with most drivers including additional sensors and KNX for ESP32-C6 with USB HWCDC and fallback to serial and 4M+ flash. - **tasmota32-AD.bin** to **tasmota32-VN.bin** = The Tasmota version in different languages for 4M+ flash. - **tasmota32-bluetooth.bin** = The Bluetooth version adds BLE support for 4M+ flash. - **tasmota32-display.bin** = The Display version without Energy Monitoring but adds display support for 4M+ flash. @@ -110,7 +114,7 @@ The latter links can be used for OTA upgrades too like ``OtaUrl https://ota.tasm [Complete list](BUILDS.md) of available feature and sensors. -## Changelog v13.4.1.1 +## Changelog v13.4.1.2 ### Added - Command ``Wifi 6`` to enable 11ax on ESP32 - Command ``PowerLock`` to disable power control of selected outputs [#21081](https://github.com/arendst/Tasmota/issues/21081) @@ -142,6 +146,10 @@ The latter links can be used for OTA upgrades too like ``OtaUrl https://ota.tasm ### Breaking Changed - Drop support for old (insecure) fingerprint format [#20842](https://github.com/arendst/Tasmota/issues/20842) - Removed dedicated touch drivers in favour of Universal Touch driver [#21146](https://github.com/arendst/Tasmota/issues/21146) +- ESP32 Ethernet Phy Type number for DM9051 from 4 to 10 (#21204)[#21204](https://github.com/arendst/Tasmota/issues/21204) +- ESP32-C3 OTA binary name from `tasmota32c3cdc.bin` to `tasmota32c3.bin` with USB HWCDC and fallback to serial [#21212](https://github.com/arendst/Tasmota/issues/21212) +- ESP32-C6 OTA binary name from `tasmota32c6cdc.bin` to `tasmota32c6.bin` with USB HWCDC and fallback to serial [#21212](https://github.com/arendst/Tasmota/issues/21212) +- ESP32-S3 OTA binary name from `tasmota32s3cdc.bin` to `tasmota32s3.bin` with USB HWCDC and fallback to serial [#21212](https://github.com/arendst/Tasmota/issues/21212) - Berry loading .be file does not generated .bec anymore [#21075](https://github.com/arendst/Tasmota/issues/21075) - LVGL remove embedded typicons font [#20872](https://github.com/arendst/Tasmota/issues/20872) - LVGL remove `textarea` and `spinbox` from binaries [#20916](https://github.com/arendst/Tasmota/issues/20916) @@ -158,7 +166,6 @@ The latter links can be used for OTA upgrades too like ``OtaUrl https://ota.tasm - KNX format of energy to match specifications [#21074](https://github.com/arendst/Tasmota/issues/21074) - ESP32 refactored Wifi for ESP32 Core3 release [#21106](https://github.com/arendst/Tasmota/issues/21106) - ESP32 WiFi phy modes 11n and 11ax represented as HT20, HT40 and HE20 [#19350](https://github.com/arendst/Tasmota/issues/19350) -- ESP32 Ethernet Phy Type number for DM9051 from 4 to 10 (#21204)[#21204](https://github.com/arendst/Tasmota/issues/21204) - berry.exe (pre-compiled for Windows) updated to latest Berry patches [#21024](https://github.com/arendst/Tasmota/issues/21024) - Berry class `int64` made immutable [#20727](https://github.com/arendst/Tasmota/issues/20727) - Matter reduce memory usage when reading with wildcards [#20809](https://github.com/arendst/Tasmota/issues/20809) diff --git a/tasmota/include/tasmota_version.h b/tasmota/include/tasmota_version.h index db0e943c6..4ea904f80 100644 --- a/tasmota/include/tasmota_version.h +++ b/tasmota/include/tasmota_version.h @@ -22,6 +22,6 @@ #define TASMOTA_SHA_SHORT // Filled by Github sed -const uint32_t TASMOTA_VERSION = 0x0D040101; // 13.4.1.1 +const uint32_t TASMOTA_VERSION = 0x0D040102; // 13.4.1.2 #endif // _TASMOTA_VERSION_H_