From 9111d02991178f7088cacefc61b0f66cee5b2bc1 Mon Sep 17 00:00:00 2001 From: Botberry Date: Wed, 17 Jul 2024 16:45:42 +0000 Subject: [PATCH] =?UTF-8?q?Release=20=F0=9F=8D=93=200.236.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 20 ++++++++++++++++++++ RELEASE.md | 15 --------------- pyproject.toml | 2 +- 3 files changed, 21 insertions(+), 16 deletions(-) delete mode 100644 RELEASE.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 9865fef896..919eb0e0ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,26 @@ CHANGELOG ========= +0.236.0 - 2024-07-17 +-------------------- + +This release changes some of the internals of Strawberry, it shouldn't +be affecting most of the users, but since we have changed the structure +of the code you might need to update your imports. + +Thankfully we also provide a codemod for this, you can run it with: + +```bash +strawberry upgrade update-imports +``` + +This release also includes additional documentation to some of +the classes, methods and functions, this is in preparation for +having the API reference in the documentation ✨ + +Contributed by [Patrick Arminio](https://github.com/patrick91) via [PR #3546](https://github.com/strawberry-graphql/strawberry/pull/3546/) + + 0.235.2 - 2024-07-08 -------------------- diff --git a/RELEASE.md b/RELEASE.md deleted file mode 100644 index c285d0ee23..0000000000 --- a/RELEASE.md +++ /dev/null @@ -1,15 +0,0 @@ -Release type: minor - -This release changes some of the internals of Strawberry, it shouldn't -be affecting most of the users, but since we have changed the structure -of the code you might need to update your imports. - -Thankfully we also provide a codemod for this, you can run it with: - -```bash -strawberry upgrade update-imports -``` - -This release also includes additional documentation to some of -the classes, methods and functions, this is in preparation for -having the API reference in the documentation ✨ diff --git a/pyproject.toml b/pyproject.toml index 58bdb8d7ff..f05db4f2ea 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "strawberry-graphql" packages = [ { include = "strawberry" } ] -version = "0.235.2" +version = "0.236.0" description = "A library for creating GraphQL APIs" authors = ["Patrick Arminio "] license = "MIT"