Skip to content

Commit

Permalink
Release 🍓 0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
botberry committed Jun 7, 2019
1 parent f380a5d commit 273d7b6
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 19 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
-------------------

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.10.0"
version = "0.11.0"
description = "A library for creating GraphQL APIs"
authors = ["Patrick Arminio <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit 273d7b6

Please sign in to comment.