Bump version to v13.4.0.2

This commit is contained in:
Theo Arends 2024-02-29 13:36:08 +01:00
parent 3bbc33f554
commit daa24af6f6
3 changed files with 19 additions and 9 deletions

View File

@ -3,7 +3,19 @@ All notable changes to this project will be documented in this file.
## [Unreleased] - Development ## [Unreleased] - Development
## [13.4.0.1] ## [13.4.0.2]
### Added
### Breaking Changed
### Changed
### Fixed
### Removed
## [13.4.0.1] 20240229
### Added ### Added
- Experimental support for LoRa - Experimental support for LoRa
- HASPmota `p<x>b<y>.delete` to delete an object (#20735) - HASPmota `p<x>b<y>.delete` to delete an object (#20735)
@ -14,9 +26,7 @@ All notable changes to this project will be documented in this file.
- Show calculated heat index if temperature and humidity is available with ``#define USE_HEAT_INDEX`` (#4771) - Show calculated heat index if temperature and humidity is available with ``#define USE_HEAT_INDEX`` (#4771)
- Berry add explicit error log when memory allocation fails (#20807) - Berry add explicit error log when memory allocation fails (#20807)
- Support for AMS5915/AMS6915 temperature and pressure sensors (#20814) - Support for AMS5915/AMS6915 temperature and pressure sensors (#20814)
- IR support data larger than 64 bits - IR support data larger than 64 bits (#20831)
### Breaking Changed
### Changed ### Changed
- ESP32 Core3 SPI ethernet support for all models - ESP32 Core3 SPI ethernet support for all models
@ -30,9 +40,7 @@ All notable changes to this project will be documented in this file.
- ESP32 PWM activity on unconfigured PWM GPIOs (#20732) - ESP32 PWM activity on unconfigured PWM GPIOs (#20732)
- Shutter inverted using internal commands (#20752) - Shutter inverted using internal commands (#20752)
- HASPmota PSRAM memory leak (#20818) - HASPmota PSRAM memory leak (#20818)
- Berry Memory leak in `import re` - Berry Memory leak in `import re` (#20823)
### Removed
## [Released] ## [Released]

View File

@ -116,11 +116,12 @@ The latter links can be used for OTA upgrades too like ``OtaUrl https://ota.tasm
[Complete list](BUILDS.md) of available feature and sensors. [Complete list](BUILDS.md) of available feature and sensors.
## Changelog v13.4.0.1 ## Changelog v13.4.0.2
### Added ### Added
- Experimental support for LoRa - Experimental support for LoRa
- Support for AMS5915/AMS6915 temperature and pressure sensors [#20814](https://github.com/arendst/Tasmota/issues/20814) - Support for AMS5915/AMS6915 temperature and pressure sensors [#20814](https://github.com/arendst/Tasmota/issues/20814)
- Show calculated heat index if temperature and humidity is available with ``#define USE_HEAT_INDEX`` [#4771](https://github.com/arendst/Tasmota/issues/4771) - Show calculated heat index if temperature and humidity is available with ``#define USE_HEAT_INDEX`` [#4771](https://github.com/arendst/Tasmota/issues/4771)
- IR support data larger than 64 bits [#20831](https://github.com/arendst/Tasmota/issues/20831)
- TasMesh support for LWT messages [#20392](https://github.com/arendst/Tasmota/issues/20392) - TasMesh support for LWT messages [#20392](https://github.com/arendst/Tasmota/issues/20392)
- QMC5883l check for overflow and scale reading [#20643](https://github.com/arendst/Tasmota/issues/20643) - QMC5883l check for overflow and scale reading [#20643](https://github.com/arendst/Tasmota/issues/20643)
- Berry add explicit error log when memory allocation fails [#20807](https://github.com/arendst/Tasmota/issues/20807) - Berry add explicit error log when memory allocation fails [#20807](https://github.com/arendst/Tasmota/issues/20807)
@ -141,6 +142,7 @@ The latter links can be used for OTA upgrades too like ``OtaUrl https://ota.tasm
### Fixed ### Fixed
- Shutter inverted using internal commands [#20752](https://github.com/arendst/Tasmota/issues/20752) - Shutter inverted using internal commands [#20752](https://github.com/arendst/Tasmota/issues/20752)
- ESP32 PWM activity on unconfigured PWM GPIOs [#20732](https://github.com/arendst/Tasmota/issues/20732) - ESP32 PWM activity on unconfigured PWM GPIOs [#20732](https://github.com/arendst/Tasmota/issues/20732)
- Berry Memory leak in `import re` [#20823](https://github.com/arendst/Tasmota/issues/20823)
- HASPmota PSRAM memory leak [#20818](https://github.com/arendst/Tasmota/issues/20818) - HASPmota PSRAM memory leak [#20818](https://github.com/arendst/Tasmota/issues/20818)
### Removed ### Removed

View File

@ -22,6 +22,6 @@
#define TASMOTA_SHA_SHORT // Filled by Github sed #define TASMOTA_SHA_SHORT // Filled by Github sed
const uint32_t TASMOTA_VERSION = 0x0D040001; // 13.4.0.1 const uint32_t TASMOTA_VERSION = 0x0D040002; // 13.4.0.2
#endif // _TASMOTA_VERSION_H_ #endif // _TASMOTA_VERSION_H_