Bump version: 0.24.5 → 0.50.0

This commit is contained in:
Fabio Manganiello 2023-06-28 02:23:09 +02:00
parent f5f0a2f5ab
commit 08c3a1e11a
Signed by: blacklight
GPG Key ID: D90FBA7F76362774
2 changed files with 5 additions and 4 deletions

View File

@ -25,7 +25,7 @@ from .message.response import Response
from .utils import set_thread_name, get_enabled_plugins
__author__ = 'Fabio Manganiello <info@fabiomanganiello.com>'
__version__ = '0.24.5'
__version__ = '0.50.0'
log = logging.getLogger('platypush')

View File

@ -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