From 73f6712f7a550f8ee449e5da756ee5ce06f71d03 Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Tue, 22 Nov 2022 00:11:51 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.23.6=20=E2=86=92=200.24.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 14 +++++++++++++- platypush/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 4 files changed, 16 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e2f4333f..3c22918a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,12 +4,24 @@ 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. -## [Unreleased] +## [0.24.0] ### Added - Added [Wallabag integration](https://git.platypush.tech/platypush/platypush/issues/224). - Added [Mimic3 TTS integration](https://git.platypush.tech/platypush/platypush/issues/226). +- Added `qos` attribute to `mqtt.publish` and all the plugins derived from `mqtt`. + +### Changed + +- Replaced PyJWT dependency with the Python-native `rsa` package. This will + make the installation much lighter, compatible with more systems and less + dependent on the platform-specific libraries required by `cryptography`. + +> **NOTE**: This is a breaking change for those who use the `backend.http` API +> with JWT tokens. The new logic encrypts and encodes the payload in a +> different format, therefore previously generated tokens are no longer +> compatible. ## [0.23.6] - 2022-09-19 diff --git a/platypush/__init__.py b/platypush/__init__.py index 3ad7a710..ea9e2d10 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.23.6' +__version__ = '0.24.0' logger = logging.getLogger('platypush') diff --git a/setup.cfg b/setup.cfg index 955725c5..2013b49d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.23.6 +current_version = 0.24.0 commit = True tag = True diff --git a/setup.py b/setup.py index f650ebc7..86abd2dd 100755 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ backend = pkg_files('platypush/backend') setup( name="platypush", - version="0.23.6", + version="0.24.0", author="Fabio Manganiello", author_email="info@fabiomanganiello.com", description="Platypush service",