From cb0638fe1946877df2c8427ad3d548462f6bf343 Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Wed, 22 Sep 2021 00:27:30 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.22.0=20=E2=86=92=200.22.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 16 ++++++++++++++++ platypush/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 4 files changed, 19 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 655ab7abf4..4b606efa3f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. Given the high speed of development in the first phase, changes are being reported only starting from v0.20.2. +## [0.22.1] - 2021-09-22 + +### Fixed + +- `zigbee.mqtt` backend now no longer requires the MQTT backend/plugin to be enabled. + +- Fixed bug on empty popcorn API responses. + +## Changed + +- Created CI Gitlab pipeline to replace the Platypush event-based pre-existing pipeline. + +## Removed + +- Removed docs references to removed/abstract integrations. + ## [0.22.0] - 2021-09-16 ### Changed diff --git a/platypush/__init__.py b/platypush/__init__.py index 13db7f7560..8c730c197e 100644 --- a/platypush/__init__.py +++ b/platypush/__init__.py @@ -23,7 +23,7 @@ from .message.response import Response from .utils import set_thread_name, get_enabled_plugins __author__ = 'Fabio Manganiello ' -__version__ = '0.22.0' +__version__ = '0.22.1' logger = logging.getLogger('platypush') diff --git a/setup.cfg b/setup.cfg index 493b8096ef..d8d2906dc4 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.22.0 +current_version = 0.22.1 commit = True tag = True diff --git a/setup.py b/setup.py index 06d1999e33..648c0c50ef 100755 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ backend = pkg_files('platypush/backend') setup( name="platypush", - version="0.22.0", + version="0.22.1", author="Fabio Manganiello", author_email="info@fabiomanganiello.com", description="Platypush service",