diff --git a/CHANGELOG.md b/CHANGELOG.md index e58e3edd8..e68bb99af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,19 @@ All notable changes to this project will be documented in this file. ## [Unreleased] - Development -## [13.2.0.1] +## [13.2.0.2] +### Added + +### Breaking Changed + +### Changed + +### Fixed + +### Removed + + +## [13.2.0.1] 20231103 ### Added - I2C bus2 support to iAQ core sensor (#19799) - I2C bus2 support to HTU temperature and humidity sensor @@ -17,9 +29,12 @@ All notable changes to this project will be documented in this file. - ESP32 core v3 auto TasConsole USB or Serial connection by @staars - Support for Winsen XH03x dust particle sensors using USE_PMS5003 and PMS_MODEL_ZH03X (#19850) - NeoPool hydrolysis setpoint and max -- NeoPool command ``NPFiltrationSpeed`` to set non-standard filtration type speed -- NeoPool ``SetOption157`` to output sensitive data -- HASPmota add styling properties +- NeoPool command ``NPFiltrationSpeed`` to set non-standard filtration type speed (#19857) +- NeoPool ``SetOption157`` to output sensitive data (#19857) +- Neopool enhancements for HA (#19857) +- ST7735S display.ini for 1.44 inch 128x128 red SPI display (#19862) +- HASPmota add styling properties (#19912) +- Matter flow sensor suppor (#19852) ### Breaking Changed - NeoPool SENSOR topic ``Power`` renamed to ``Powerunit`` @@ -27,13 +42,15 @@ All notable changes to this project will be documented in this file. ### Changed - Prepare I2C drivers for bus2 support - Matter Light0 now accept a Relay number (#19809) +- ESP32 keep FS intact when over flashing with VSC (#19816) +- Increase MAX_HUE_DEVICES to 32 (#19820) +- MI32 updates (#19893) ### Fixed - NeoPool filtration mode display (#19801) +- Compile USE_PID (#19890) - ESP32 I2C allow bus2 support when bus1 is not enabled - -### Removed - +- ESP32 IR receive with Arduino Core 3 (#19904) ## [Released] diff --git a/RELEASENOTES.md b/RELEASENOTES.md index 92d6f5067..8fd151943 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -110,7 +110,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.1 +## Changelog v13.2.0.2 ### 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) @@ -122,16 +122,28 @@ The latter links can be used for OTA upgrades too like ``OtaUrl https://ota.tasm - I2C bus2 support to SI1145/6/7 Ultra violet index and light sensor - I2C bus2 support to LM75AD temperature sensor - Support for Winsen XH03x dust particle sensors using USE_PMS5003 and PMS_MODEL_ZH03X [#19850](https://github.com/arendst/Tasmota/issues/19850) -- Experimental support for ESP32-C2 and ESP32-C6 using Arduino core v3 +- ST7735S display.ini for 1.44 inch 128x128 red SPI display [#19862](https://github.com/arendst/Tasmota/issues/19862) +- NeoPool hydrolysis setpoint and max +- NeoPool command ``NPFiltrationSpeed`` to set non-standard filtration type speed [#19857](https://github.com/arendst/Tasmota/issues/19857) +- NeoPool command ``SetOption157`` to enable output of sensitive data [#19857](https://github.com/arendst/Tasmota/issues/19857) +- Neopool enhancements for HomeAssistant [#19857](https://github.com/arendst/Tasmota/issues/19857) +- Support for ESP32-C2 and ESP32-C6 using Arduino core v3 - ESP32 core v3 auto TasConsole USB or Serial connection by @staars +- HASPmota add styling properties [#19912](https://github.com/arendst/Tasmota/issues/19912) +- Matter flow sensor suppor [#19852](https://github.com/arendst/Tasmota/issues/19852) ### Breaking Changed ### Changed +- Increase MAX_HUE_DEVICES to 32 [#19820](https://github.com/arendst/Tasmota/issues/19820) - Matter Light0 now accept a Relay number [#19809](https://github.com/arendst/Tasmota/issues/19809) +- MI32 updates [#19893](https://github.com/arendst/Tasmota/issues/19893) +- ESP32 keep FileSystem intact when over flashing with VSC [#19816](https://github.com/arendst/Tasmota/issues/19816) ### Fixed +- Compile USE_PID [#19890](https://github.com/arendst/Tasmota/issues/19890) - NeoPool filtration mode display [#19801](https://github.com/arendst/Tasmota/issues/19801) - ESP32 I2C allow bus2 support when bus1 is not enabled +- ESP32 IR receive with Arduino Core 3 [#19904](https://github.com/arendst/Tasmota/issues/19904) ### Removed diff --git a/tasmota/include/tasmota_version.h b/tasmota/include/tasmota_version.h index bd3ed94dd..a4ad4de6c 100644 --- a/tasmota/include/tasmota_version.h +++ b/tasmota/include/tasmota_version.h @@ -20,6 +20,6 @@ #ifndef _TASMOTA_VERSION_H_ #define _TASMOTA_VERSION_H_ -const uint32_t TASMOTA_VERSION = 0x0D020001; // 13.2.0.1 +const uint32_t TASMOTA_VERSION = 0x0D020002; // 13.2.0.2 #endif // _TASMOTA_VERSION_H_