Skip to content

Commit

Permalink
Release 🍓 0.163.0
Browse files Browse the repository at this point in the history
  • Loading branch information
botberry committed Mar 13, 2023
1 parent ece5323 commit ea6ebe2
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 14 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,24 @@
CHANGELOG
=========

0.163.0 - 2023-03-13
--------------------

This release adds support for list arguments in operation directives.

The following is now supported:

```python
@strawberry.directive(locations=[DirectiveLocation.FIELD])
def append_names(
value: DirectiveValue[str], names: List[str]
): # note the usage of List here
return f"{value} {', '.join(names)}"
```

Contributed by [chenyijian](https://github.com/hot123s) via [PR #2632](https://github.com/strawberry-graphql/strawberry/pull/2632/)


0.162.0 - 2023-03-10
--------------------

Expand Down
13 changes: 0 additions & 13 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.162.0"
version = "0.163.0"
description = "A library for creating GraphQL APIs"
authors = ["Patrick Arminio <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit ea6ebe2

Please sign in to comment.