From 1bf5425b586c72280a1d31fedf78b3c92487ba79 Mon Sep 17 00:00:00 2001 From: Botberry Date: Sat, 25 May 2024 09:10:06 +0000 Subject: [PATCH] =?UTF-8?q?Release=20=F0=9F=8D=93=200.231.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 11 +++++++++++ RELEASE.md | 6 ------ pyproject.toml | 2 +- 3 files changed, 12 insertions(+), 7 deletions(-) delete mode 100644 RELEASE.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 2fd2a459ff..39c030b197 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,17 @@ CHANGELOG ========= +0.231.0 - 2024-05-25 +-------------------- + +When calling the CLI without all the necessary dependencies installed, +a `MissingOptionalDependenciesError` will be raised instead of a +`ModuleNotFoundError`. This new exception will provide a more helpful +hint regarding how to fix the problem. + +Contributed by [Ethan Henderson](https://github.com/parafoxia) via [PR #3511](https://github.com/strawberry-graphql/strawberry/pull/3511/) + + 0.230.0 - 2024-05-22 -------------------- diff --git a/RELEASE.md b/RELEASE.md deleted file mode 100644 index 0b0f808a4b..0000000000 --- a/RELEASE.md +++ /dev/null @@ -1,6 +0,0 @@ -Release type: minor - -When calling the CLI without all the necessary dependencies installed, -a `MissingOptionalDependenciesError` will be raised instead of a -`ModuleNotFoundError`. This new exception will provide a more helpful -hint regarding how to fix the problem. diff --git a/pyproject.toml b/pyproject.toml index 6919f2fa11..fc07eb7d08 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "strawberry-graphql" packages = [ { include = "strawberry" } ] -version = "0.230.0" +version = "0.231.0" description = "A library for creating GraphQL APIs" authors = ["Patrick Arminio "] license = "MIT"