From 824e5347c681c721def2bf1857eee265486ff0d5 Mon Sep 17 00:00:00 2001 From: Botberry Date: Tue, 3 Sep 2024 10:23:46 +0000 Subject: [PATCH] =?UTF-8?q?Release=20=F0=9F=8D=93=200.239.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 9 +++++++++ RELEASE.md | 4 ---- pyproject.toml | 2 +- 3 files changed, 10 insertions(+), 5 deletions(-) delete mode 100644 RELEASE.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 50cc57c6cc..706d233ea2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ CHANGELOG ========= +0.239.2 - 2024-09-03 +-------------------- + +This release fixes a TypeError on Python 3.8 due to us using a +`asyncio.Queue[Tuple[bool, Any]](1)` instead of `asyncio.Queue(1)`. + +Contributed by [Daniel Szoke](https://github.com/szokeasaurusrex) via [PR #3615](https://github.com/strawberry-graphql/strawberry/pull/3615/) + + 0.239.1 - 2024-09-02 -------------------- diff --git a/RELEASE.md b/RELEASE.md deleted file mode 100644 index 8886450f63..0000000000 --- a/RELEASE.md +++ /dev/null @@ -1,4 +0,0 @@ -Release type: patch - -This release fixes a TypeError on Python 3.8 due to us using a -`asyncio.Queue[Tuple[bool, Any]](1)` instead of `asyncio.Queue(1)`. diff --git a/pyproject.toml b/pyproject.toml index ea4e73bfb5..8f4e3d1b66 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "strawberry-graphql" packages = [ { include = "strawberry" } ] -version = "0.239.1" +version = "0.239.2" description = "A library for creating GraphQL APIs" authors = ["Patrick Arminio "] license = "MIT"