Bump version v14.0.0.2

This commit is contained in:
Theo Arends 2024-05-27 15:46:15 +02:00
parent 0fe893b01d
commit 5085a8bbbb
3 changed files with 18 additions and 6 deletions

View File

@ -3,7 +3,20 @@ All notable changes to this project will be documented in this file.
## [Unreleased] - Development
## [14.0.0.1]
## [14.0.0.2]
### Added
- Disabled watchdog for ESP32 and variants (#21509)
### Breaking Changed
### Changed
### Fixed
### Removed
## [14.0.0.1] 20240527
### Added
- Enabled watchdog for ESP32 and variants (#21422)
- Optional command ``WebRun`` (as WebQuery extension) (#21364)
@ -11,8 +24,6 @@ All notable changes to this project will be documented in this file.
- Support for Matter 1.3 Water leak detectors (#21456)
- Berry add reuse of methods for interface-like code reuse (#21500)
### Breaking Changed
### Changed
- ESP32 compiler option from `target-align` to `no-target-align` (#21407)
- On universal display remove default backlight power if a PWM channel is used for backlight
@ -37,6 +48,7 @@ All notable changes to this project will be documented in this file.
- UfsServe watchdog on large folder (#21486)
- Matter auto-fix IPv6 link-local zone id when network reconnects (#21494)
- SML compile error when median-filter is disabled (#21495)
- Hydreon RG15 malformed JSON string (#21508)
### Removed
- Support of old insecure fingerprint algorithm. Deprecated since v8.4.0 (#21417)

View File

@ -119,11 +119,10 @@ 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 v14.0.0.1
## Changelog v14.0.0.2
### Added
- Optional command ``WebRun`` (as WebQuery extension) [#21364](https://github.com/arendst/Tasmota/issues/21364)
- Support for Knx dimmer and color [#21434](https://github.com/arendst/Tasmota/issues/21434)
- Enabled watchdog for ESP32 and variants [#21422](https://github.com/arendst/Tasmota/issues/21422)
- Berry add reuse of methods for interface-like code reuse [#21500](https://github.com/arendst/Tasmota/issues/21500)
- Support for Matter 1.3 Water leak detectors [#21456](https://github.com/arendst/Tasmota/issues/21456)
@ -146,6 +145,7 @@ The latter links can be used for OTA upgrades too like ``OtaUrl https://ota.tasm
- Wrong timeout in `WebQuery` and `webclient` since Core3 [#21442](https://github.com/arendst/Tasmota/issues/21442)
- UfsServe watchdog on large folder [#21486](https://github.com/arendst/Tasmota/issues/21486)
- SML compile error when median-filter is disabled [#21495](https://github.com/arendst/Tasmota/issues/21495)
- Hydreon RG15 malformed JSON string [#21508](https://github.com/arendst/Tasmota/issues/21508)
- Zigbee crash when removing `ZbName` [#21449](https://github.com/arendst/Tasmota/issues/21449)
- Avoid connection errors when switching to safeboot to upload OTA firmware [#21428](https://github.com/arendst/Tasmota/issues/21428)
- ESP32 BLE fix scanning [#21451](https://github.com/arendst/Tasmota/issues/21451)

View File

@ -22,6 +22,6 @@
#define TASMOTA_SHA_SHORT // Filled by Github sed
const uint32_t TASMOTA_VERSION = 0x0E000001; // 14.0.0.1
const uint32_t TASMOTA_VERSION = 0x0E000002; // 14.0.0.2
#endif // _TASMOTA_VERSION_H_