Bump version: 0.23.2 → 0.23.3

This commit is contained in:
Fabio Manganiello 2022-06-01 23:08:10 +02:00
parent af483cade3
commit b857ce60a7
Signed by: blacklight
GPG Key ID: D90FBA7F76362774
4 changed files with 27 additions and 3 deletions

View File

@ -3,6 +3,30 @@
All notable changes to this project will be documented in this file. 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. Given the high speed of development in the first phase, changes are being reported only starting from v0.20.2.
## [0.23.3] - 2022-06-01
### Added
- Added `ntfy` integration (see #219).
- Support for a default `config.yaml` if one isn't specified in the default
locations.
### Changed
- The HTTP server dependencies are now marked as required, since the default
`config.yaml` will have the HTTP backend enabled by default in order to allow
the creation of a first user.
- Updated Vue.js frontend dependencies to the latest version.
- Removed bulma from the frontend dependencies, making the frontend much
lighter and loading times much faster.
- Other UI improvements.
### Fixed
- More reliable cronjobs in case of DST change or any clock changes in general
(see #217).
- Fixed `--redis-queue` argument.
## [0.23.2] - 2022-03-27 ## [0.23.2] - 2022-03-27
### Added ### Added

View File

@ -23,7 +23,7 @@ from .message.response import Response
from .utils import set_thread_name, get_enabled_plugins from .utils import set_thread_name, get_enabled_plugins
__author__ = 'Fabio Manganiello <info@fabiomanganiello.com>' __author__ = 'Fabio Manganiello <info@fabiomanganiello.com>'
__version__ = '0.23.2' __version__ = '0.23.3'
logger = logging.getLogger('platypush') logger = logging.getLogger('platypush')

View File

@ -1,5 +1,5 @@
[bumpversion] [bumpversion]
current_version = 0.23.2 current_version = 0.23.3
commit = True commit = True
tag = True tag = True

View File

@ -28,7 +28,7 @@ backend = pkg_files('platypush/backend')
setup( setup(
name="platypush", name="platypush",
version="0.23.2", version="0.23.3",
author="Fabio Manganiello", author="Fabio Manganiello",
author_email="info@fabiomanganiello.com", author_email="info@fabiomanganiello.com",
description="Platypush service", description="Platypush service",