From 01c06e600a6e0c18ee559dbff807617dae05f7cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Sat, 24 Aug 2024 18:14:21 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=20Release=20version=200.0.8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- asyncer/__init__.py | 2 +- docs/release-notes.md | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/asyncer/__init__.py b/asyncer/__init__.py index 04fc8f7..7ffcae2 100644 --- a/asyncer/__init__.py +++ b/asyncer/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.0.7" +__version__ = "0.0.8" from ._main import PendingValueException as PendingValueException from ._main import SoonValue as SoonValue diff --git a/docs/release-notes.md b/docs/release-notes.md index 8aeb886..ddb1c12 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -2,6 +2,8 @@ ## Latest Changes +## 0.0.8 + ### Refactors * ♻️ Deprecate `asyncify(cancellable=True)` in favor of `asyncify(abandon_on_cancel=True)`, following AnyIO 4.1.0. PR [#202](https://github.com/fastapi/asyncer/pull/202) by [@tiangolo](https://github.com/tiangolo).