From 6666f5581c48968bea88e5b8ef215b4222877e80 Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Sat, 17 Dec 2022 00:29:21 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.24.2=20=E2=86=92=200.24.3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 4 +++- platypush/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b0737db1..9c543f25 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,13 +4,15 @@ 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.3] - 2022-12-17 ### Added - Added `[-v|--verbose]` command-line option to override the default logging configuration and enable debug logging. - Added `--version` command-line option to print the current version and exit. +- [[#236](https://git.platypush.tech/platypush/platypush/issues/236)] Added + support for `author` and `tags` attributes on feed entries. ## [0.24.2] - 2022-12-10 diff --git a/platypush/__init__.py b/platypush/__init__.py index 83184271..bb9970e8 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.24.2' +__version__ = '0.24.3' logger = logging.getLogger('platypush') diff --git a/setup.cfg b/setup.cfg index bb8de17a..43af8793 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.24.2 +current_version = 0.24.3 commit = True tag = True diff --git a/setup.py b/setup.py index 16bacf3a..7a1efbc4 100755 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ backend = pkg_files('platypush/backend') setup( name="platypush", - version="0.24.2", + version="0.24.3", author="Fabio Manganiello", author_email="info@fabiomanganiello.com", description="Platypush service",