From eb976a379bcb1f5a3bb83335886af6b25b184659 Mon Sep 17 00:00:00 2001 From: Stefan Lehmann Date: Wed, 29 Apr 2020 17:02:37 +0200 Subject: [PATCH] Move Changelog.md to root and change to Markdown --- doc/changelog.rst => CHANGELOG.md | 66 ++++++++++++++----------------- 1 file changed, 30 insertions(+), 36 deletions(-) rename doc/changelog.rst => CHANGELOG.md (70%) diff --git a/doc/changelog.rst b/CHANGELOG.md similarity index 70% rename from doc/changelog.rst rename to CHANGELOG.md index 7ac6cad..a513ab9 100644 --- a/doc/changelog.rst +++ b/CHANGELOG.md @@ -1,82 +1,76 @@ -Changelog -========= -Version 1.1.0 -------------- +# Changelog + +All notable changes to this project will be documented in this file. +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). + +## 1.1.1 [unreleased] + +### Added + +### Changed + +### Removed + +## 1.1.0 * drop support for Python 2.7 and Python <= 3.5 * use type-annotations and variable type annotations * include mypy type check in travis ci -Version 1.0.7 -------------- +## 1.0.7 * optional support for async mqtt loop * include Python 3.7 and 3.8 in ci -Version 1.0.6 -------------- -* do not install typing when using Python >= 3.5 - [cekk] +## ## ## ## ## ## ## ## ## 1.0.6 +* do not install typing when using Python >= 3.5 [cekk] * omit verbose logging messages -Version 1.0.5 -------------- +## 1.0.5 * fix issue #40. One can now use the @mqtt decorators before calling `mqtt.init_app()` * fix problems with continuous integration on Travis CI -Version 1.0.4 -------------- +## 1.0.4 * complete coverage with type annotations * add logging * update Pipfile and add requirements.txt * add limitation hint in the documentation and readme -Version 1.0.2 -------------- +## 1.0.2 * nothing special -Version 1.0.1 -------------- +## 1.0.1 * Establish Flake8 conformity -Version 0.0.11 --------------- +## 0.0.11 * add websockets support * fix bug with qos subscriptions -Version 0.0.10 --------------- +## 0.0.10 * add `on_connect` and `on_disconnect` decorators -Version 0.0.8 -------------- +## 0.0.8 * add last will to be published on client disconnect * add `on_publish`, `on_subscribe` and `on_unsubscribe` decorator -Version 0.0.7 -------------- +## 0.0.7 * 100% test coverage * bugfix: make flask application object at initialization optional again * proper disconnecting on mqtt._disconnect -Version 0.0.6 -------------- +## 0.0.6 * Flask-MQTT now supports Python 2.7 -Version 0.0.5 -------------- +## 0.0.5 * fixed unsupported type annotations for older Python 3 versions -Version 0.0.4 -------------- +## 0.0.4 * documentation improvements * support Python 3 versions < 3.6 by installing typing package -Version 0.0.3 -------------- +## 0.0.3 * automatic reconnect * instant auto-refresh * set keepalive time in seconds * logging decorator -Version 0.0.2 -------------- +## 0.0.2 * add SSL/TLS support