Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for release: 5.3.0 #441

Merged
merged 2 commits into from
Nov 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 5.2.0
current_version = 5.3.0
commit = True
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?P<releaselevel>[a-z\d]+)?
Expand Down
15 changes: 14 additions & 1 deletion Changelog
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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/
Expand Down
2 changes: 1 addition & 1 deletion amqp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__ = '[email protected]'
Expand Down
2 changes: 1 addition & 1 deletion docs/includes/introduction.txt
Original file line number Diff line number Diff line change
@@ -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/
Expand Down
Loading