From 22ebb811cda05bcbefa7096187452821e1f7f762 Mon Sep 17 00:00:00 2001 From: Chris Sewell Date: Thu, 11 Feb 2021 09:40:01 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20RELEASE:=20v0.7.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 4 ++++ kiwipy/version.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fe7712d..72faf67 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## v0.7.2 2021-02-11 + +Fix an aio-pika deprecation, to use async context managers. + ## v0.7.1 The default task message TTL setting was changed in `v0.5.4` but this breaks existing queues since RabbitMQ does not allow changing these parameters on existing queues. diff --git a/kiwipy/version.py b/kiwipy/version.py index 03ad5aa..fbbf7e1 100644 --- a/kiwipy/version.py +++ b/kiwipy/version.py @@ -1,4 +1,4 @@ # -*- coding: utf-8 -*- -__version__ = '0.7.1' +__version__ = '0.7.2' __all__ = ('__version__',)