From a6909f226cbe0709e64aa5dacfeabed1218c5ae3 Mon Sep 17 00:00:00 2001 From: Tomer Nosrati Date: Tue, 12 Nov 2024 15:42:12 +0200 Subject: [PATCH 1/2] Added Changelog for v5.3.0 --- Changelog | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) 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 From a8d86e95e0adba026fa76967c3c5ce8c7ac6e65c Mon Sep 17 00:00:00 2001 From: Tomer Nosrati Date: Tue, 12 Nov 2024 15:43:04 +0200 Subject: [PATCH 2/2] =?UTF-8?q?Bump=20version:=205.2.0=20=E2=86=92=205.3.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- README.rst | 2 +- amqp/__init__.py | 2 +- docs/includes/introduction.txt | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) 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/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/