diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 737f0aab..d3e0e9f7 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 4.2.0 +current_version = 4.2.1 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)(?P[a-z]+)? diff --git a/README.rst b/README.rst index d06c8969..64114ae6 100644 --- a/README.rst +++ b/README.rst @@ -4,7 +4,7 @@ |build-status| |coverage| |license| |wheel| |pyversion| |pyimp| -:Version: 4.2.0 +:Version: 4.2.1 :Web: http://kombu.me/ :Download: https://pypi.python.org/pypi/kombu/ :Source: https://github.com/celery/kombu/ diff --git a/docs/includes/introduction.txt b/docs/includes/introduction.txt index 72657aa7..c0003b71 100644 --- a/docs/includes/introduction.txt +++ b/docs/includes/introduction.txt @@ -1,4 +1,4 @@ -:Version: 4.2.0 +:Version: 4.2.1 :Web: http://kombu.me/ :Download: http://pypi.python.org/pypi/kombu/ :Source: https://github.com/celery/kombu/ diff --git a/kombu/__init__.py b/kombu/__init__.py index 624df5d9..77bd6145 100644 --- a/kombu/__init__.py +++ b/kombu/__init__.py @@ -10,7 +10,7 @@ if sys.version_info < (2, 7): # pragma: no cover from collections import namedtuple # noqa -__version__ = '4.2.0' +__version__ = '4.2.1' __author__ = 'Ask Solem' __contact__ = 'ask@celeryproject.org' __homepage__ = 'https://kombu.readthedocs.io'