From 54b8a49198bb2f4b2dfca367fa4be52124ee0aee Mon Sep 17 00:00:00 2001 From: Botberry Date: Mon, 2 Sep 2024 15:56:06 +0000 Subject: [PATCH] =?UTF-8?q?Release=20=F0=9F=8D=93=200.239.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 12 ++++++++++++ RELEASE.md | 7 ------- pyproject.toml | 2 +- 3 files changed, 13 insertions(+), 8 deletions(-) delete mode 100644 RELEASE.md diff --git a/CHANGELOG.md b/CHANGELOG.md index a5a5195944..50cc57c6cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,18 @@ CHANGELOG ========= +0.239.1 - 2024-09-02 +-------------------- + +This release fixes an issue with the http multipart subscription where the +status code would be returned as `None`, instead of 200. + +We also took the opportunity to update the internals to better support +additional protocols in future. + +Contributed by [Patrick Arminio](https://github.com/patrick91) via [PR #3610](https://github.com/strawberry-graphql/strawberry/pull/3610/) + + 0.239.0 - 2024-08-31 -------------------- diff --git a/RELEASE.md b/RELEASE.md deleted file mode 100644 index 9824d7ece0..0000000000 --- a/RELEASE.md +++ /dev/null @@ -1,7 +0,0 @@ -Release type: patch - -This release fixes an issue with the http multipart subscription where the -status code would be returned as `None`, instead of 200. - -We also took the opportunity to update the internals to better support -additional protocols in future. diff --git a/pyproject.toml b/pyproject.toml index 3273b38d62..ea4e73bfb5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "strawberry-graphql" packages = [ { include = "strawberry" } ] -version = "0.239.0" +version = "0.239.1" description = "A library for creating GraphQL APIs" authors = ["Patrick Arminio "] license = "MIT"