diff --git a/CHANGELOG.md b/CHANGELOG.md index 3066ac4..76e7ca4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. ## [Unreleased] - No unreleased changes so far +## [0.14.1] - 2021-08-15 +### Added +- Output of version information after startup + ## [0.14.0] - 2021-08-15 ### Added - Possibility to set caching time for picture downloads seperately @@ -177,7 +181,8 @@ Send empty message when topic is disabled ## [0.1.0] - 2021-05-27 Initial release -[unreleased]: https://github.com/tillsteinbach/WeConnect-mqtt/compare/v0.14.0...HEAD +[unreleased]: https://github.com/tillsteinbach/WeConnect-mqtt/compare/v0.14.1...HEAD +[0.14.1]: https://github.com/tillsteinbach/WeConnect-mqtt/releases/tag/v0.14.1 [0.14.0]: https://github.com/tillsteinbach/WeConnect-mqtt/releases/tag/v0.14.0 [0.13.2]: https://github.com/tillsteinbach/WeConnect-mqtt/releases/tag/v0.13.2 [0.13.1]: https://github.com/tillsteinbach/WeConnect-mqtt/releases/tag/v0.13.1 diff --git a/weconnect_mqtt/weconnect_mqtt.py b/weconnect_mqtt/weconnect_mqtt.py index ee2a84d..a263d2f 100644 --- a/weconnect_mqtt/weconnect_mqtt.py +++ b/weconnect_mqtt/weconnect_mqtt.py @@ -107,6 +107,7 @@ def main(): # noqa: C901 # pylint: disable=too-many-branches,too-many-statemen logLevel = min(len(LOG_LEVELS) - 1, max(logLevel + adjustment, 0)) logging.basicConfig(level=LOG_LEVELS[logLevel]) + LOG.info('WeConnect-mqtt %s (using WeConnect-python %s)', __version__, __weconnect_version__) usetls = args.use_tls if args.cacerts: