From 40641fd56b9c13c8752809c79436eb90902e4610 Mon Sep 17 00:00:00 2001 From: Botberry Date: Thu, 21 Sep 2023 03:51:22 +0000 Subject: [PATCH] =?UTF-8?q?Release=20=F0=9F=8D=93=200.209.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 23 +++++++++++++++++++++++ RELEASE.md | 18 ------------------ pyproject.toml | 2 +- 3 files changed, 24 insertions(+), 19 deletions(-) delete mode 100644 RELEASE.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 441727d960..4eea865e2f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,29 @@ CHANGELOG ========= +0.209.1 - 2023-09-21 +-------------------- + +This release fixes an issue when trying to generate code from a schema that +was using double quotes inside descriptions. + +The following schema will now generate code correctly: + +```graphql +""" +A type of person or character within the "Star Wars" Universe. +""" +type Species { + """ + The classification of this species, such as "mammal" or "reptile". + """ + classification: String! +} +``` + +Contributed by [Patrick Arminio](https://github.com/patrick91) via [PR #3112](https://github.com/strawberry-graphql/strawberry/pull/3112/) + + 0.209.0 - 2023-09-19 -------------------- diff --git a/RELEASE.md b/RELEASE.md deleted file mode 100644 index 631b4ffcc5..0000000000 --- a/RELEASE.md +++ /dev/null @@ -1,18 +0,0 @@ -Release type: patch - -This release fixes an issue when trying to generate code from a schema that -was using double quotes inside descriptions. - -The following schema will now generate code correctly: - -```graphql -""" -A type of person or character within the "Star Wars" Universe. -""" -type Species { - """ - The classification of this species, such as "mammal" or "reptile". - """ - classification: String! -} -``` diff --git a/pyproject.toml b/pyproject.toml index 05c43b1dae..0e22a239ad 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "strawberry-graphql" packages = [ { include = "strawberry" } ] -version = "0.209.0" +version = "0.209.1" description = "A library for creating GraphQL APIs" authors = ["Patrick Arminio "] license = "MIT"