summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOmer Katz <omer.drow@gmail.com>2020-08-23 19:06:15 +0300
committerOmer Katz <omer.drow@gmail.com>2020-08-23 19:06:15 +0300
commit978bcde75228e24ee8059470a538c293d01285d0 (patch)
treeab6c3cdb8771521665e61494d9375d829833a518
parentd49db76d90244948ee3859c0b200cec91c138dc9 (diff)
downloadkombu-978bcde75228e24ee8059470a538c293d01285d0.tar.gz
Bump version: 5.0.0 → 5.0.1v5.0.1
-rw-r--r--.bumpversion.cfg2
-rw-r--r--README.rst2
-rw-r--r--docs/includes/introduction.txt2
-rw-r--r--kombu/__init__.py2
4 files changed, 4 insertions, 4 deletions
diff --git a/.bumpversion.cfg b/.bumpversion.cfg
index 631bf973..142c7a2f 100644
--- a/.bumpversion.cfg
+++ b/.bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
-current_version = 5.0.0
+current_version = 5.0.1
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 958a6e8e..b2399995 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: 5.0.0
+:Version: 5.0.1
: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 7b0279d6..08d6c714 100644
--- a/docs/includes/introduction.txt
+++ b/docs/includes/introduction.txt
@@ -1,4 +1,4 @@
-:Version: 5.0.0
+:Version: 5.0.1
: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 c4b3ffb9..0592da6a 100644
--- a/kombu/__init__.py
+++ b/kombu/__init__.py
@@ -9,7 +9,7 @@ if sys.version_info < (2, 7): # pragma: no cover
from collections import namedtuple # noqa
-__version__ = '5.0.0'
+__version__ = '5.0.1'
__author__ = 'Ask Solem'
__contact__ = 'auvipy@gmail.com, ask@celeryproject.org'
__homepage__ = 'https://kombu.readthedocs.io'