From 08c3a1e11aac4ef8099edb313aa69abc85cd7a14 Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Wed, 28 Jun 2023 02:23:09 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.24.5=20=E2=86=92=200.50.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- platypush/__init__.py | 2 +- setup.cfg | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/platypush/__init__.py b/platypush/__init__.py index 27aa9bee..eb2aaa57 100644 --- a/platypush/__init__.py +++ b/platypush/__init__.py @@ -25,7 +25,7 @@ from .message.response import Response from .utils import set_thread_name, get_enabled_plugins __author__ = 'Fabio Manganiello ' -__version__ = '0.24.5' +__version__ = '0.50.0' log = logging.getLogger('platypush') diff --git a/setup.cfg b/setup.cfg index e059a76d..6ccc270c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.24.5 +current_version = 0.50.0 commit = True tag = True @@ -8,7 +8,8 @@ description_file = README.md [flake8] max-line-length = 120 -extend-ignore = - E203 +extend-ignore = + E203 W503 SIM105 +