From 1400a7ef2b4d848da168575434650251d647c996 Mon Sep 17 00:00:00 2001 From: Botberry Date: Sat, 23 Nov 2024 15:49:36 +0000 Subject: [PATCH] =?UTF-8?q?Release=20=F0=9F=8D=93=200.253.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 10 ++++++++++ RELEASE.md | 5 ----- pyproject.toml | 2 +- 3 files changed, 11 insertions(+), 6 deletions(-) delete mode 100644 RELEASE.md diff --git a/CHANGELOG.md b/CHANGELOG.md index bd7164a50f..577077faf5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,16 @@ CHANGELOG ========= +0.253.0 - 2024-11-23 +-------------------- + +In this release, the return types of the `get_root_value` and `get_context` +methods were updated to be consistent across all view integrations. Before this +release, the return types used by the ASGI and Django views were too generic. + +Contributed by [Jonathan Ehwald](https://github.com/DoctorJohn) via [PR #3712](https://github.com/strawberry-graphql/strawberry/pull/3712/) + + 0.252.0 - 2024-11-22 -------------------- diff --git a/RELEASE.md b/RELEASE.md deleted file mode 100644 index 7c6a33952a..0000000000 --- a/RELEASE.md +++ /dev/null @@ -1,5 +0,0 @@ -Release type: minor - -In this release, the return types of the `get_root_value` and `get_context` -methods were updated to be consistent across all view integrations. Before this -release, the return types used by the ASGI and Django views were too generic. diff --git a/pyproject.toml b/pyproject.toml index 05f62a98a5..4f7677550b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "strawberry-graphql" packages = [ { include = "strawberry" } ] -version = "0.252.0" +version = "0.253.0" description = "A library for creating GraphQL APIs" authors = ["Patrick Arminio "] license = "MIT"