diff --git a/CHANGELOG.md b/CHANGELOG.md index 46631d90f..54aed9f49 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,20 @@ All notable changes to this project will be documented in this file. ## [Unreleased] - Development -## [9.1.0.1] +## [9.1.0.2] +### Added +- KNX read reply for Power (#9236, #9891) + +### Breaking Changed +- KNX DPT9 (16-bit float) to DPT14 (32-bit float) by Adrian Scillato (#9811, #9888) + +### Changed + +### Fixed + +### Removed + +## [9.1.0.1] - 20201116 ### Added - Zigbee support for Mi Door and Contact (#9759) - Zigbee alarm persistence (#9785) diff --git a/RELEASENOTES.md b/RELEASENOTES.md index c6f4aa90a..ec51492a0 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -56,7 +56,7 @@ The attached binaries can also be downloaded from http://ota.tasmota.com/tasmota [Complete list](BUILDS.md) of available feature and sensors. -## Changelog v9.1.0.1 +## Changelog v9.1.0.2 ### Added - Command ``SetOption115 1`` to enable ESP32 MiBle - Command ``SetOption116 1`` to disable auto-query of zigbee light devices (avoids network storms with large groups) @@ -68,6 +68,10 @@ The attached binaries can also be downloaded from http://ota.tasmota.com/tasmota - Support for additional EZO sensors by Christopher Tremblay - Support for AS608 optical and R503 capacitive fingerprint sensor - Support for Shelly Dimmer 1 and 2 by James Turton (#9854) +- KNX read reply for Power (#9236, #9891) + +### Breaking Changed +- KNX DPT9 (16-bit float) to DPT14 (32-bit float) by Adrian Scillato (#9811, #9888) ### Changed - Core library from v2.7.4.5 to v2.7.4.7 diff --git a/tasmota/tasmota_version.h b/tasmota/tasmota_version.h index 37a103f23..399ac41cc 100644 --- a/tasmota/tasmota_version.h +++ b/tasmota/tasmota_version.h @@ -20,9 +20,6 @@ #ifndef _TASMOTA_VERSION_H_ #define _TASMOTA_VERSION_H_ -const uint32_t VERSION = 0x09010001; - -// Lowest compatible version -const uint32_t VERSION_COMPATIBLE = 0x07010006; +const uint32_t VERSION = 0x09010002; #endif // _TASMOTA_VERSION_H_