Skip to content

Commit

Permalink
Release 🍓 0.209.1
Browse files Browse the repository at this point in the history
  • Loading branch information
botberry committed Sep 21, 2023
1 parent cbb5a92 commit 40641fd
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 19 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
--------------------

Expand Down
18 changes: 0 additions & 18 deletions RELEASE.md

This file was deleted.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <patrick.arminio@gmail.com>"]
license = "MIT"
Expand Down

0 comments on commit 40641fd

Please sign in to comment.