Skip to content

Commit

Permalink
Release 🍓 0.261.0
Browse files Browse the repository at this point in the history
  • Loading branch information
botberry committed Feb 27, 2025
1 parent acbf683 commit d690814
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 12 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
CHANGELOG
=========

0.261.0 - 2025-02-27
--------------------

This release adds support for `type[strawberry.UNSET]` in addition to `strawberry.types.unset.UnsetType` for annotations.


```python
@strawberry.type
class User:
name: str | None = UNSET
age: int | None | type[strawberry.UNSET] = UNSET
```

Contributed by [Alexey Pelykh](https://github.com/alexey-pelykh) via [PR #3765](https://github.com/strawberry-graphql/strawberry/pull/3765/)


0.260.4 - 2025-02-27
--------------------

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

0 comments on commit d690814

Please sign in to comment.