Version bump to v11.1.0.2

This commit is contained in:
Theo Arends 2022-05-04 18:09:26 +02:00
parent d47c69559f
commit 94ebef496d
3 changed files with 17 additions and 7 deletions

View File

@ -3,7 +3,20 @@ All notable changes to this project will be documented in this file.
## [Unreleased] - Development ## [Unreleased] - Development
## [11.1.0.1] ## [11.1.0.2]
### Added
### Changed
- ESP32 Tasmota SafeMode with changed partition scheme allowing larger binaries
### Fixed
### Removed
## [11.1.0.1] 20220504
### Added ### Added
- Support for Sonoff MS01 soil moisture sensor (#15335) - Support for Sonoff MS01 soil moisture sensor (#15335)
- Support for daisy chaining MAX7219 displays (#15345) - Support for daisy chaining MAX7219 displays (#15345)
@ -14,9 +27,6 @@ All notable changes to this project will be documented in this file.
- Support for flowrate meters like YF-DN50 and similary (#15474) - Support for flowrate meters like YF-DN50 and similary (#15474)
- Command ``IfxRp ""|<policy>`` adds optional InfluxDb Retention Policy (#15513) - Command ``IfxRp ""|<policy>`` adds optional InfluxDb Retention Policy (#15513)
- Command ``SetOption140 0/1`` to switch between MQTT Clean Session (0) or Persistent Session (1) (#15530) - Command ``SetOption140 0/1`` to switch between MQTT Clean Session (0) or Persistent Session (1) (#15530)
- ESP32 Preparations for Tasmota SafeMode with changed partition scheme allowing larger binaries
### Changed
### Fixed ### Fixed
- SCD40 start low power command (#15361) - SCD40 start low power command (#15361)

View File

@ -104,7 +104,7 @@ The latter links can be used for OTA upgrades too like ``OtaUrl http://ota.tasmo
[Complete list](BUILDS.md) of available feature and sensors. [Complete list](BUILDS.md) of available feature and sensors.
## Changelog v11.1.0.1 ## Changelog v11.1.0.2
### Added ### Added
- Command ``SetOption139 0/1`` to switch between pressure unit "mmHg" (0) or "inHg" (1) when ``SO24 1`` [#15350](https://github.com/arendst/Tasmota/issues/15350) - Command ``SetOption139 0/1`` to switch between pressure unit "mmHg" (0) or "inHg" (1) when ``SO24 1`` [#15350](https://github.com/arendst/Tasmota/issues/15350)
- Command ``SetOption140 0/1`` to switch between MQTT Clean Session (0) or Persistent Session (1) [#15530](https://github.com/arendst/Tasmota/issues/15530) - Command ``SetOption140 0/1`` to switch between MQTT Clean Session (0) or Persistent Session (1) [#15530](https://github.com/arendst/Tasmota/issues/15530)
@ -114,11 +114,11 @@ The latter links can be used for OTA upgrades too like ``OtaUrl http://ota.tasmo
- Support for daisy chaining MAX7219 displays [#15345](https://github.com/arendst/Tasmota/issues/15345) - Support for daisy chaining MAX7219 displays [#15345](https://github.com/arendst/Tasmota/issues/15345)
- Sonoff SPM delayed SetPowerOnState [#13447](https://github.com/arendst/Tasmota/issues/13447) - Sonoff SPM delayed SetPowerOnState [#13447](https://github.com/arendst/Tasmota/issues/13447)
- Support for flowrate meters like YF-DN50 and similary [#15474](https://github.com/arendst/Tasmota/issues/15474) - Support for flowrate meters like YF-DN50 and similary [#15474](https://github.com/arendst/Tasmota/issues/15474)
- ESP32 Preparations for Tasmota SafeMode with changed partition scheme allowing larger binaries
### Breaking Changed ### Breaking Changed
### Changed ### Changed
- ESP32 Tasmota SafeMode with changed partition scheme allowing larger binaries
### Fixed ### Fixed
- Improv initial or erase device installation failing to provide Configure WiFi option - Improv initial or erase device installation failing to provide Configure WiFi option

View File

@ -20,6 +20,6 @@
#ifndef _TASMOTA_VERSION_H_ #ifndef _TASMOTA_VERSION_H_
#define _TASMOTA_VERSION_H_ #define _TASMOTA_VERSION_H_
const uint32_t VERSION = 0x0B010001; // 11.1.0.1 const uint32_t VERSION = 0x0B010001; // 11.1.0.2
#endif // _TASMOTA_VERSION_H_ #endif // _TASMOTA_VERSION_H_