From 184bf2885a418d5972c96d1155e672bc1dc69596 Mon Sep 17 00:00:00 2001 From: Botberry Date: Thu, 7 Nov 2024 13:56:46 +0000 Subject: [PATCH] =?UTF-8?q?Release=20=F0=9F=8D=93=200.248.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 b284294a5e..ccb3433077 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,16 @@ CHANGELOG ========= +0.248.0 - 2024-11-07 +-------------------- + +In this release, all types of the legacy graphql-ws protocol were refactored. +The types are now much stricter and precisely model the difference between null and undefined fields. +As a result, our protocol implementation and related tests are now more robust and easier to maintain. + +Contributed by [Jonathan Ehwald](https://github.com/DoctorJohn) via [PR #3689](https://github.com/strawberry-graphql/strawberry/pull/3689/) + + 0.247.2 - 2024-11-05 -------------------- diff --git a/RELEASE.md b/RELEASE.md deleted file mode 100644 index 0ad55f9b02..0000000000 --- a/RELEASE.md +++ /dev/null @@ -1,5 +0,0 @@ -Release type: minor - -In this release, all types of the legacy graphql-ws protocol were refactored. -The types are now much stricter and precisely model the difference between null and undefined fields. -As a result, our protocol implementation and related tests are now more robust and easier to maintain. diff --git a/pyproject.toml b/pyproject.toml index e05ec7a050..620e3e18ac 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "strawberry-graphql" packages = [ { include = "strawberry" } ] -version = "0.247.2" +version = "0.248.0" description = "A library for creating GraphQL APIs" authors = ["Patrick Arminio "] license = "MIT"