forked from platypush/platypush
Bump version: 0.23.6 → 0.24.0
This commit is contained in:
parent
d95baac74e
commit
73f6712f7a
4 changed files with 16 additions and 4 deletions
14
CHANGELOG.md
14
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
|
||||
|
||||
|
|
|
@ -23,7 +23,7 @@ from .message.response import Response
|
|||
from .utils import set_thread_name, get_enabled_plugins
|
||||
|
||||
__author__ = 'Fabio Manganiello <info@fabiomanganiello.com>'
|
||||
__version__ = '0.23.6'
|
||||
__version__ = '0.24.0'
|
||||
|
||||
logger = logging.getLogger('platypush')
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
[bumpversion]
|
||||
current_version = 0.23.6
|
||||
current_version = 0.24.0
|
||||
commit = True
|
||||
tag = True
|
||||
|
||||
|
|
2
setup.py
2
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",
|
||||
|
|
Loading…
Reference in a new issue