mirror of https://github.com/arendst/Tasmota.git
Bump version v12.1.1.1
This commit is contained in:
parent
a187867070
commit
58f14301ae
24
CHANGELOG.md
24
CHANGELOG.md
|
@ -3,7 +3,16 @@ All notable changes to this project will be documented in this file.
|
|||
|
||||
## [Unreleased] - Development
|
||||
|
||||
## [12.1.0.1]
|
||||
## [12.1.1.1]
|
||||
### Added
|
||||
|
||||
### Changed
|
||||
|
||||
### Fixed
|
||||
|
||||
### Removed
|
||||
|
||||
## [12.1.0.1] 20220825
|
||||
### Added
|
||||
- Zigbee device plugin mechanism with commands ``ZbLoad``, ``ZbUnload`` and ``ZbLoadDump`` (#16252)
|
||||
- ESP32-S3 support for internal temperature sensor
|
||||
|
@ -13,15 +22,20 @@ All notable changes to this project will be documented in this file.
|
|||
- ESP32 NimBLE library from v1.3.6 to v1.4.0
|
||||
|
||||
### Fixed
|
||||
- RTC not detected when lights are present (#16242)
|
||||
- DNS lookup for .local domains (#16273)
|
||||
- Button response delay regression from v12.0.2.4 (#16319)
|
||||
- Lost module name in GUI regression from v12.0.2.4 - 20220803 (#16324)
|
||||
|
||||
### Removed
|
||||
|
||||
## [Released]
|
||||
|
||||
## [12.1.1] 20220825
|
||||
- Release Patricia
|
||||
|
||||
### Fixed
|
||||
- RTC not detected when lights are present (#16242)
|
||||
- DNS lookup for .local domains (#16273)
|
||||
- Button response delay regression from v12.0.2.4 (#16319)
|
||||
- Lost module name in GUI regression from v12.0.2.4 - 20220803 (#16324)
|
||||
|
||||
## [12.1.0] 20220818
|
||||
- Release Patricia
|
||||
|
||||
|
|
|
@ -72,7 +72,7 @@ Latest released binaries can be downloaded from
|
|||
- http://ota.tasmota.com/tasmota/release
|
||||
|
||||
Historical binaries can be downloaded from
|
||||
- http://ota.tasmota.com/tasmota/release-12.1.0
|
||||
- http://ota.tasmota.com/tasmota/release-12.1.1
|
||||
|
||||
The latter links can be used for OTA upgrades too like ``OtaUrl http://ota.tasmota.com/tasmota/release/tasmota.bin.gz``
|
||||
|
||||
|
@ -97,7 +97,7 @@ Latest released binaries can be downloaded from
|
|||
- http://ota.tasmota.com/tasmota32/release
|
||||
|
||||
Historical binaries can be downloaded from
|
||||
- http://ota.tasmota.com/tasmota32/release-12.1.0
|
||||
- http://ota.tasmota.com/tasmota32/release-12.1.1
|
||||
|
||||
The latter links can be used for OTA upgrades too like ``OtaUrl http://ota.tasmota.com/tasmota32/release/tasmota32.bin``
|
||||
|
||||
|
@ -107,7 +107,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.
|
||||
|
||||
## Changelog v12.1.0.1
|
||||
## Changelog v12.1.1.1
|
||||
### Added
|
||||
- Command ``StatusRetain`` (#11109)
|
||||
- Zigbee device plugin mechanism with commands ``ZbLoad``, ``ZbUnload`` and ``ZbLoadDump`` [#16252](https://github.com/arendst/Tasmota/issues/16252)
|
||||
|
|
|
@ -20,6 +20,6 @@
|
|||
#ifndef _TASMOTA_VERSION_H_
|
||||
#define _TASMOTA_VERSION_H_
|
||||
|
||||
const uint32_t VERSION = 0x0C010001; // 12.1.0.1
|
||||
const uint32_t VERSION = 0x0C010101; // 12.1.1.1
|
||||
|
||||
#endif // _TASMOTA_VERSION_H_
|
||||
|
|
Loading…
Reference in New Issue