From b4258a6e262c42f0117426491f9c0a6bb788e242 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Ma=C5=9Blanka?= <piotr.maslanka@henrietta.com.pl> Date: Mon, 14 Oct 2024 17:33:02 +0200 Subject: [PATCH] fixed rare decoding bug --- CHANGELOG.md | 7 +++++++ coolamqp/__init__.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8925167..c7ddd2e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ Previous release notes are hosted on [GitHub](https://github.com/smok-serwis/coolamqp/releases). Since v1.3.2 they'll be put here and in release description. +# v1.4.3 +======== + +* bugfix regarding deadlettering queues +* prefetch_size will be forced to 0 to better comply with [RabbitMQ](https://www.rabbitmq.com/docs/specification#method-status-basic.qos) + * and a DeprecationWarning will be shown to people who try to set something else. 0 will be forced upon them anyway. + # v1.4.2 ======== diff --git a/coolamqp/__init__.py b/coolamqp/__init__.py index 98d186b..4e7c72a 100644 --- a/coolamqp/__init__.py +++ b/coolamqp/__init__.py @@ -1 +1 @@ -__version__ = '1.4.2' +__version__ = '1.4.3' -- GitLab