diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 6151098c..8e74fb2b 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 5.3.0 +current_version = 5.3.1 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)(?P[a-z\d]+)? diff --git a/Changelog b/Changelog index 1a824c9a..90e7c6d8 100644 --- a/Changelog +++ b/Changelog @@ -6,6 +6,17 @@ The previous amqplib changelog is here: http://code.google.com/p/py-amqplib/source/browse/CHANGES +.. _version-5.3.1: + +5.3.1 +===== +:release-date: 2024-11-12 +:release-by: Tomer Nosrati + +- Fixed readthedocs (#443) +- Prepare for release: 5.3.1 (#444) + + .. _version-5.3.0: 5.3.0 diff --git a/README.rst b/README.rst index 1a60ca14..0668d289 100644 --- a/README.rst +++ b/README.rst @@ -4,7 +4,7 @@ |build-status| |coverage| |license| |wheel| |pyversion| |pyimp| -:Version: 5.3.0 +:Version: 5.3.1 :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 e6fb9679..2f4841e4 100644 --- a/amqp/__init__.py +++ b/amqp/__init__.py @@ -4,7 +4,7 @@ import re from collections import namedtuple -__version__ = '5.3.0' +__version__ = '5.3.1' __author__ = 'Barry Pederson' __maintainer__ = 'Asif Saif Uddin, Matus Valo' __contact__ = 'auvipy@gmail.com' diff --git a/docs/includes/introduction.txt b/docs/includes/introduction.txt index 449f477f..6248c56e 100644 --- a/docs/includes/introduction.txt +++ b/docs/includes/introduction.txt @@ -1,4 +1,4 @@ -:Version: 5.3.0 +:Version: 5.3.1 :Web: https://amqp.readthedocs.io/ :Download: https://pypi.org/project/amqp/ :Source: http://github.com/celery/py-amqp/