diff options
-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 6c0ce54e..360acf6b 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 4.6.9 +current_version = 4.6.10 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| |[![Downloads](https://pepy.tech/badge/kombu)](https://pepy.tech/project/kombu)| -:Version: 4.6.9 +:Version: 4.6.10 :Documentation: https://kombu.readthedocs.io/ :Download: https://pypi.org/project/kombu/ :Source: https://github.com/celery/kombu/ diff --git a/docs/includes/introduction.txt b/docs/includes/introduction.txt index 620b713e..79d7d619 100644 --- a/docs/includes/introduction.txt +++ b/docs/includes/introduction.txt @@ -1,4 +1,4 @@ -:Version: 4.6.9 +:Version: 4.6.10 :Web: https://kombu.readthedocs.io/ :Download: https://pypi.org/project/kombu/ :Source: https://github.com/celery/kombu/ diff --git a/kombu/__init__.py b/kombu/__init__.py index 4b6dabe8..204a2d53 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.6.9' +__version__ = '4.6.10' __author__ = 'Ask Solem' __contact__ = 'auvipy@gmail.com, ask@celeryproject.org' __homepage__ = 'https://kombu.readthedocs.io' |