mirror of https://github.com/arendst/Tasmota.git
Bump version to v13.2.0.3
This commit is contained in:
parent
7260208f04
commit
5b13ece33e
20
CHANGELOG.md
20
CHANGELOG.md
|
@ -3,7 +3,19 @@ All notable changes to this project will be documented in this file.
|
|||
|
||||
## [Unreleased] - Development
|
||||
|
||||
## [13.2.0.2]
|
||||
## [13.2.0.3]
|
||||
### Added
|
||||
- DeepSleep support through TIMERS (#20117)
|
||||
|
||||
### Breaking Changed
|
||||
|
||||
### Changed
|
||||
|
||||
### Fixed
|
||||
|
||||
### Removed
|
||||
|
||||
## [13.2.0.2] 20231130
|
||||
### Added
|
||||
- Scripter TCP client (#19914)
|
||||
- Berry ``debug.gcdebug()`` to enable GC debugging (#19936)
|
||||
|
@ -14,9 +26,6 @@ All notable changes to this project will be documented in this file.
|
|||
- ESP32 Partition Wizard can be loaded dynamically (#19980)
|
||||
- Berry `scale_int`, equivalent of `scale_uint` for signed integers (#20090)
|
||||
- ESP32 support for Avago Tech Bluetooth Buttons (#20088)
|
||||
- DeepSleep support through TIMERS
|
||||
|
||||
### Breaking Changed
|
||||
|
||||
### Changed
|
||||
- Matter update hierarchy of plugins (#19915)
|
||||
|
@ -34,9 +43,6 @@ All notable changes to this project will be documented in this file.
|
|||
- ESP32 remove restart energy logging if no energy monitoring is selected
|
||||
- ``WebQuery`` response buffer corruption and format character ``%`` (#20111)
|
||||
|
||||
### Removed
|
||||
|
||||
|
||||
## [13.2.0.1] 20231103
|
||||
### Added
|
||||
- I2C bus2 support to iAQ core sensor (#19799)
|
||||
|
|
|
@ -116,7 +116,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.2.0.2
|
||||
## Changelog v13.2.0.3
|
||||
### Added
|
||||
- Command ``GpioRead`` to show input state [#19810](https://github.com/arendst/Tasmota/issues/19810)
|
||||
- I2C bus2 support to iAQ core sensor [#19799](https://github.com/arendst/Tasmota/issues/19799)
|
||||
|
@ -137,6 +137,7 @@ The latter links can be used for OTA upgrades too like ``OtaUrl https://ota.tasm
|
|||
- NeoPool sensor delta trigger (command ``NPTelePeriod``) [#19973](https://github.com/arendst/Tasmota/issues/19973)
|
||||
- NeoPool enhancements for HomeAssistant [#19857](https://github.com/arendst/Tasmota/issues/19857)
|
||||
- NeoPool store settings on unified file system [#19973](https://github.com/arendst/Tasmota/issues/19973)
|
||||
- DeepSleep support through TIMERS [#20117](https://github.com/arendst/Tasmota/issues/20117)
|
||||
- Support for ESP32-C2 and ESP32-C6 using Arduino core v3
|
||||
- ESP32 core v3 auto TasConsole USB or Serial connection by @staars
|
||||
- ESP32 Partition Wizard can be loaded dynamically [#19980](https://github.com/arendst/Tasmota/issues/19980)
|
||||
|
|
|
@ -20,6 +20,6 @@
|
|||
#ifndef _TASMOTA_VERSION_H_
|
||||
#define _TASMOTA_VERSION_H_
|
||||
|
||||
const uint32_t TASMOTA_VERSION = 0x0D020002; // 13.2.0.2
|
||||
const uint32_t TASMOTA_VERSION = 0x0D020003; // 13.2.0.3
|
||||
|
||||
#endif // _TASMOTA_VERSION_H_
|
||||
|
|
Loading…
Reference in New Issue