diff --git a/.bumpversion.cfg b/.bumpversion.cfg index b9ee53ca..6151098c 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 5.2.0 +current_version = 5.3.0 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)(?P[a-z\d]+)? diff --git a/Changelog b/Changelog index 2a7c9b32..1a824c9a 100644 --- a/Changelog +++ b/Changelog @@ -6,6 +6,20 @@ The previous amqplib changelog is here: http://code.google.com/p/py-amqplib/source/browse/CHANGES +.. _version-5.3.0: + +5.3.0 +===== +:release-date: 2024-11-12 +:release-by: Tomer Nosrati + +- Hard-code requests version because of the bug in docker-py (#432) +- fix AbstractTransport repr socket error (#361) (#431) +- blacksmith.sh: Migrate workflows to Blacksmith (#436) +- Added Python 3.13 to CI (#440) +- Prepare for release: 5.3.0 (#441) + + .. _version-5.2.0: 5.2.0 @@ -20,7 +34,6 @@ http://code.google.com/p/py-amqplib/source/browse/CHANGES - Send heartbeat frames more often. - .. _version-5.1.1: 5.1.1 diff --git a/README.rst b/README.rst index 21337dc1..1a60ca14 100644 --- a/README.rst +++ b/README.rst @@ -4,7 +4,7 @@ |build-status| |coverage| |license| |wheel| |pyversion| |pyimp| -:Version: 5.2.0 +:Version: 5.3.0 :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 315ef0fd..e6fb9679 100644 --- a/amqp/__init__.py +++ b/amqp/__init__.py @@ -4,7 +4,7 @@ import re from collections import namedtuple -__version__ = '5.2.0' +__version__ = '5.3.0' __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 021034f4..449f477f 100644 --- a/docs/includes/introduction.txt +++ b/docs/includes/introduction.txt @@ -1,4 +1,4 @@ -:Version: 5.2.0 +:Version: 5.3.0 :Web: https://amqp.readthedocs.io/ :Download: https://pypi.org/project/amqp/ :Source: http://github.com/celery/py-amqp/