From eded86487e8def549a961fd216b3048f6dd0f0f7 Mon Sep 17 00:00:00 2001 From: Omer Katz Date: Thu, 6 Dec 2018 16:29:26 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=204.2.1=20=E2=86=92=204.2.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- README.rst | 3 +-- docs/includes/introduction.txt | 2 +- kombu/__init__.py | 2 +- 4 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index d3e0e9f7..16bee085 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 4.2.1 +current_version = 4.2.2 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)(?P[a-z]+)? diff --git a/README.rst b/README.rst index b60f2aa9..bd5ae982 100644 --- a/README.rst +++ b/README.rst @@ -4,7 +4,7 @@ |build-status| |coverage| |license| |wheel| |pyversion| |pyimp| -:Version: 4.2.1 +:Version: 4.2.2 :Documentation: https://kombu.readthedocs.io/ :Download: https://pypi.org/project/kombu/ :Source: https://github.com/celery/kombu/ @@ -358,4 +358,3 @@ file in the top distribution directory for the full license text. :alt: Support Python implementations. :target: https://pypi.org/project/kombu/ -- - diff --git a/docs/includes/introduction.txt b/docs/includes/introduction.txt index c2389ce4..60734d04 100644 --- a/docs/includes/introduction.txt +++ b/docs/includes/introduction.txt @@ -1,4 +1,4 @@ -:Version: 4.2.1 +:Version: 4.2.2 :Web: http://kombu.me/ :Download: https://pypi.org/project/kombu/ :Source: https://github.com/celery/kombu/ diff --git a/kombu/__init__.py b/kombu/__init__.py index 77bd6145..fb297174 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.1' +__version__ = '4.2.2' __author__ = 'Ask Solem' __contact__ = 'ask@celeryproject.org' __homepage__ = 'https://kombu.readthedocs.io'