Skip to content

Commit

Permalink
Prepare for (pre) release: v5.5.0rc1 (#2150)
Browse files Browse the repository at this point in the history
* Bump version: 5.4.2 → 5.5.0rc1

* Added Changelog for v5.5.0rc1

* Fixed typo
  • Loading branch information
Nusnus authored Oct 14, 2024
1 parent e417d92 commit 1691d3e
Show file tree
Hide file tree
Showing 5 changed files with 49 additions and 4 deletions.
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.4.2
current_version = 5.5.0rc1
commit = True
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?P<releaselevel>[a-z]+)?
Expand Down
45 changes: 45 additions & 0 deletions Changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,51 @@
Change history
================

.. _version-5.5.0rc1:

5.5.0rc1
========
:release-date: 14 Oct, 2024
:release-by: Tomer Nosrati

Key Highlights
~~~~~~~~~~~~~~

Native Delayed Delivery
-----------------------

Official support to `RabbitMQ Delayed Delivery <https://docs.particular.net/transports/rabbitmq/delayed-delivery>`_,
which is required to enable ETA tasks with quorum queues in Celery.

urllib3 instead of curl
-----------------------

We can finally say goodbye to the :pypi:`pycurl` dependency and use :pypi:`urllib3` instead.

What's Changed
~~~~~~~~~~~~~~

- Pin tzdata to latest version 2024.2 (#2121)
- Refactored CI (#2122)
- Added unit tests to "tox -e parallel" environment (#2123)
- Improve pre-commit checks and fix all new lint errors (#2124)
- Removed codecov flags (#2126)
- Pin pre-commit to latest version 3.8.0 (#2125)
- Limit redis-py <5.1.0 (#2132)
- Removed "on push" from the linter GitHub Actions workflow (#2133)
- Bump pymongo from 4.9.1 to 4.10.0 (#2130)
- Update pymongo to 4.10.1 (#2136)
- fix(pytest): skip file-lock test on Windows (#2138)
- Apply errback and callback when retry occurs (#2129)
- Pin pre-commit to latest version 4.0.0 (Python 3.9+) (#2140)
- Pin pre-commit to latest version 4.0.1 (#2144)
- Add native delayed delivery API to kombu (#2128)
- Add support for Google Pub/Sub as transport broker (#2147)
- Update the transport options according to the retry policy (#2148)
- Feature: urllib3 instead of curl (#2134)
- Update mypy to 1.12.0 (#2149)
- Prepare for (pre) release: v5.5.0rc1 (#2150)

.. _version-5.4.2:

5.4.2
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| |downloads|

:Version: 5.4.2
:Version: 5.5.0rc1
:Documentation: https://kombu.readthedocs.io/
:Download: https://pypi.org/project/kombu/
:Source: https://github.com/celery/kombu/
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.4.2
:Version: 5.5.0rc1
:Web: https://kombu.readthedocs.io/
:Download: https://pypi.org/project/kombu/
:Source: https://github.com/celery/kombu/
Expand Down
2 changes: 1 addition & 1 deletion kombu/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from collections import namedtuple
from typing import Any, cast

__version__ = '5.4.2'
__version__ = '5.5.0rc1'
__author__ = 'Ask Solem'
__contact__ = 'auvipy@gmail.com'
__homepage__ = 'https://kombu.readthedocs.io'
Expand Down

0 comments on commit 1691d3e

Please sign in to comment.