diff --git a/CHANGELOG.md b/CHANGELOG.md index c394895934..806582dbc1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,26 @@ CHANGELOG ========= +0.11.0 - 2019-06-07 +------------------- + +Added support for optional fields with default arguments in the GraphQL schema when default arguments are passed to the resolver. + +Example: + ```python +@strawberry.type +class Query: + @strawberry.field + def hello(self, info, name: str = "world") -> str: + return name +``` + +```graphql +type Query { + hello(name: String = "world"): String +} +``` + 0.10.0 - 2019-05-28 ------------------- diff --git a/RELEASE.md b/RELEASE.md deleted file mode 100644 index fd39b323eb..0000000000 --- a/RELEASE.md +++ /dev/null @@ -1,18 +0,0 @@ -Release type: minor - -Added support for optional fields with default arguments in the GraphQL schema when default arguments are passed to the resolver. - -Example: - ```python -@strawberry.type -class Query: - @strawberry.field - def hello(self, info, name: str = "world") -> str: - return name -``` - -```graphql -type Query { - hello(name: String = "world"): String -} -``` \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 213aa1f982..be04944839 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "strawberry-graphql" packages = [ { include = "strawberry" } ] -version = "0.10.0" +version = "0.11.0" description = "A library for creating GraphQL APIs" authors = ["Patrick Arminio "] license = "MIT"