diff --git a/CHANGELOG.md b/CHANGELOG.md index c23dd7016d..12981af2e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,17 @@ CHANGELOG ========= +0.13.3 - 2019-07-23 +------------------- + +Fix field initialization not allowed when using `strawberry.field` in an `input` type + +```python +@strawberry.input +class Say: + what = strawberry.field(is_input=True) +``` + 0.13.2 - 2019-07-18 ------------------- diff --git a/RELEASE.md b/RELEASE.md deleted file mode 100644 index a4987a0b68..0000000000 --- a/RELEASE.md +++ /dev/null @@ -1,9 +0,0 @@ -Release type: patch - -Fix field initialization not allowed when using `strawberry.field` in an `input` type - -```python -@strawberry.input -class Say: - what = strawberry.field(is_input=True) -``` diff --git a/pyproject.toml b/pyproject.toml index a585e80df8..50b6009396 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "strawberry-graphql" packages = [ { include = "strawberry" } ] -version = "0.13.2" +version = "0.13.3" description = "A library for creating GraphQL APIs" authors = ["Patrick Arminio "] license = "MIT"