From 50356ae934358903e47972345f04401959268a61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Thu, 22 Feb 2024 16:42:58 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=20Release=20version=200.0.5?= 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 2c2f549..3cbc94d 100644 --- a/asyncer/__init__.py +++ b/asyncer/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.0.4" +__version__ = "0.0.5" 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 72317ef..c48623a 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -2,6 +2,8 @@ ## Latest Changes +## 0.0.5 + ### Fixes * 🐛 Fix `syncify` with `raise_sync_error=False` on AnyIO 4.x.x, do not start new event loops unnecessarily. PR [#130](https://github.com/tiangolo/asyncer/pull/130) by [@tiangolo](https://github.com/tiangolo).