From a3dd2df376e8343478392cf4af6eaad476551364 Mon Sep 17 00:00:00 2001 From: Botberry Date: Thu, 21 Nov 2024 11:00:19 +0000 Subject: [PATCH] =?UTF-8?q?Release=20=F0=9F=8D=93=200.251.0?= 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 2ce728c81a..8f9ddc4575 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,18 @@ CHANGELOG ========= +0.251.0 - 2024-11-21 +-------------------- + +Starting with this release, the same JSON encoder is used to encode HTTP +responses and WebSocket messages. + +This enables developers to override the `encode_json` method on their views to +customize the JSON encoder used by all web protocols. + +Contributed by [Jonathan Ehwald](https://github.com/DoctorJohn) via [PR #3708](https://github.com/strawberry-graphql/strawberry/pull/3708/) + + 0.250.1 - 2024-11-19 -------------------- diff --git a/RELEASE.md b/RELEASE.md deleted file mode 100644 index a51c567957..0000000000 --- a/RELEASE.md +++ /dev/null @@ -1,7 +0,0 @@ -Release type: minor - -Starting with this release, the same JSON encoder is used to encode HTTP -responses and WebSocket messages. - -This enables developers to override the `encode_json` method on their views to -customize the JSON encoder used by all web protocols. diff --git a/pyproject.toml b/pyproject.toml index daab2ce6aa..78c9f2f095 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "strawberry-graphql" packages = [ { include = "strawberry" } ] -version = "0.250.1" +version = "0.251.0" description = "A library for creating GraphQL APIs" authors = ["Patrick Arminio "] license = "MIT"