diff options
author | Omer Katz <omer.drow@gmail.com> | 2018-05-30 17:07:29 +0300 |
---|---|---|
committer | Omer Katz <omer.drow@gmail.com> | 2018-05-30 17:07:29 +0300 |
commit | c627c6d9d1f29ae0bcb03931d5f24001e60f72a9 (patch) | |
tree | 6eeeec0ee7fe2103ed55fcd53efa8fbc880520cc | |
parent | 736d1909bac5d14074ad116796871fc9a4c4c667 (diff) | |
download | kombu-c627c6d9d1f29ae0bcb03931d5f24001e60f72a9.tar.gz |
Bump version: 4.2.0 → 4.2.1v4.2.1
-rw-r--r-- | .bumpversion.cfg | 2 | ||||
-rw-r--r-- | README.rst | 2 | ||||
-rw-r--r-- | docs/includes/introduction.txt | 2 | ||||
-rw-r--r-- | kombu/__init__.py | 2 |
4 files changed, 4 insertions, 4 deletions
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<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?P<releaselevel>[a-z]+)? @@ -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' |