Skip to content

Commit

Permalink
updated version 4.6.8
Browse files Browse the repository at this point in the history
  • Loading branch information
auvipy committed Mar 2, 2020
1 parent b22cb50 commit 619754f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 4.6.7
current_version = 4.6.8
commit = True
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?P<releaselevel>[a-z]+)?
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.7
:Version: 4.6.8
:Documentation: https://kombu.readthedocs.io/
:Download: https://pypi.org/project/kombu/
:Source: https://github.com/celery/kombu/
Expand Down
2 changes: 1 addition & 1 deletion docs/includes/introduction.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
:Version: 4.6.7
:Version: 4.6.8
:Web: https://kombu.readthedocs.io/
:Download: https://pypi.org/project/kombu/
:Source: https://github.com/celery/kombu/
Expand Down
4 changes: 2 additions & 2 deletions kombu/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
import sys

if sys.version_info < (2, 7): # pragma: no cover
raise Exception('Kombu 4.0 requires Python versions 2.7 or later.')
raise Exception('Kombu 4.6 requires Python versions 2.7 or later.')

from collections import namedtuple # noqa

__version__ = '4.6.7'
__version__ = '4.6.8'
__author__ = 'Ask Solem'
__contact__ = '[email protected], [email protected]'
__homepage__ = 'https://kombu.readthedocs.io'
Expand Down

0 comments on commit 619754f

Please sign in to comment.