summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOmer Katz <omer.drow@gmail.com>2020-09-01 18:21:10 +0300
committerOmer Katz <omer.drow@gmail.com>2020-09-03 14:56:00 +0300
commit84ca0ce91a58bbd0a3e22826587500debdd61ff2 (patch)
tree093fc612da0e0cb976e96b067edc5fc2ba34146f
parent8bd5d7806a444989c78ff7928579ff8410d2b925 (diff)
downloadpy-amqp-84ca0ce91a58bbd0a3e22826587500debdd61ff2.tar.gz
Bump version: 5.0.0a1 → 5.0.0b1
-rw-r--r--.bumpversion.cfg3
-rw-r--r--README.rst2
-rw-r--r--amqp/__init__.py2
-rw-r--r--docs/conf.py4
-rw-r--r--docs/includes/introduction.txt2
5 files changed, 6 insertions, 7 deletions
diff --git a/.bumpversion.cfg b/.bumpversion.cfg
index 4e67cc6..b57f2d5 100644
--- a/.bumpversion.cfg
+++ b/.bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
-current_version = 5.0.0a1
+current_version = 5.0.0b1
commit = True
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?P<releaselevel>[a-z\d]+)?
@@ -12,4 +12,3 @@ serialize =
[bumpversion:file:docs/includes/introduction.txt]
[bumpversion:file:README.rst]
-
diff --git a/README.rst b/README.rst
index 6f1995e..acaa8de 100644
--- a/README.rst
+++ b/README.rst
@@ -4,7 +4,7 @@
|build-status| |coverage| |license| |wheel| |pyversion| |pyimp|
-:Version: 5.0.0a1
+:Version: 5.0.0b1
:Web: https://amqp.readthedocs.io/
:Download: https://pypi.org/project/amqp/
:Source: http://github.com/celery/py-amqp/
diff --git a/amqp/__init__.py b/amqp/__init__.py
index 4a35f09..15039ba 100644
--- a/amqp/__init__.py
+++ b/amqp/__init__.py
@@ -5,7 +5,7 @@ from __future__ import absolute_import, unicode_literals
import re
from collections import namedtuple
-__version__ = '5.0.0a1'
+__version__ = '5.0.0b1'
__author__ = 'Barry Pederson'
__maintainer__ = 'Asif Saif Uddin, Matus Valo'
__contact__ = 'pyamqp@celeryproject.org'
diff --git a/docs/conf.py b/docs/conf.py
index f6691ee..b24fc11 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -7,8 +7,8 @@ globals().update(conf.build_config(
'amqp', __file__,
project='py-amqp',
description='Python Promises',
- version_dev='2.5',
- version_stable='2.4',
+ version_dev='5.1',
+ version_stable='5.0',
canonical_url='https://amqp.readthedocs.io',
webdomain='celeryproject.org',
github_project='celery/py-amqp',
diff --git a/docs/includes/introduction.txt b/docs/includes/introduction.txt
index c0e7960..31b7f26 100644
--- a/docs/includes/introduction.txt
+++ b/docs/includes/introduction.txt
@@ -1,4 +1,4 @@
-:Version: 5.0.0a1
+:Version: 5.0.0b1
:Web: https://amqp.readthedocs.io/
:Download: https://pypi.org/project/amqp/
:Source: http://github.com/celery/py-amqp/