summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAsif Saif Uddin (Auvi) <auvipy@gmail.com>2020-03-02 16:07:38 +0600
committerAsif Saif Uddin (Auvi) <auvipy@gmail.com>2020-03-02 16:07:38 +0600
commit619754f130d2fc138fa6e228ac43aad52c0a1fa2 (patch)
tree9c3605e7258d5119f78a27ab5d4d11f273f6671e
parentb22cb507a1a60d26f8ed932d50513d164f984d42 (diff)
downloadkombu-619754f130d2fc138fa6e228ac43aad52c0a1fa2.tar.gz
updated version 4.6.84.6.8
-rw-r--r--.bumpversion.cfg2
-rw-r--r--README.rst2
-rw-r--r--docs/includes/introduction.txt2
-rw-r--r--kombu/__init__.py4
4 files changed, 5 insertions, 5 deletions
diff --git a/.bumpversion.cfg b/.bumpversion.cfg
index b658f886..bc6fc84e 100644
--- a/.bumpversion.cfg
+++ b/.bumpversion.cfg
@@ -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]+)?
diff --git a/README.rst b/README.rst
index 9b91e883..2b262f2f 100644
--- a/README.rst
+++ b/README.rst
@@ -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/
diff --git a/docs/includes/introduction.txt b/docs/includes/introduction.txt
index 55550952..411aa4a1 100644
--- a/docs/includes/introduction.txt
+++ b/docs/includes/introduction.txt
@@ -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/
diff --git a/kombu/__init__.py b/kombu/__init__.py
index 224e3c4e..68b10ab9 100644
--- a/kombu/__init__.py
+++ b/kombu/__init__.py
@@ -6,11 +6,11 @@ import re
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__ = 'auvipy@gmail.com, ask@celeryproject.org'
__homepage__ = 'https://kombu.readthedocs.io'