diff --git a/CHANGELOG.md b/CHANGELOG.md index 041263edbb..e12e0ba899 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,16 @@ CHANGELOG ========= +0.193.1 - 2023-07-05 +-------------------- + +This fixes a regression from 0.190.0 where changes to the +return type of a field done by Field Extensions would not +be taken in consideration by the schema. + +Contributed by [Thiago Bellini Ribeiro](https://github.com/bellini666) via [PR #2922](https://github.com/strawberry-graphql/strawberry/pull/2922/) + + 0.193.0 - 2023-07-04 -------------------- diff --git a/RELEASE.md b/RELEASE.md deleted file mode 100644 index ffc7da3f98..0000000000 --- a/RELEASE.md +++ /dev/null @@ -1,5 +0,0 @@ -Release type: patch - -This fixes a regression from 0.190.0 where changes to the -return type of a field done by Field Extensions would not -be taken in consideration by the schema. diff --git a/pyproject.toml b/pyproject.toml index 288ceca514..9423b3f43c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "strawberry-graphql" packages = [ { include = "strawberry" } ] -version = "0.193.0" +version = "0.193.1" description = "A library for creating GraphQL APIs" authors = ["Patrick Arminio "] license = "MIT"