Skip to content

Commit e27cfbd

Browse files
authored
Merge pull request #277 from yukinarit/bump-to-0.9.4
chore: Bump version to 0.9.4
2 parents b1f7772 + 52a7a98 commit e27cfbd

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
## `0.9.4` (2022-11-20)
2+
3+
Variable lengh tuple is supported.
4+
```python
5+
@serde
6+
@dataclass
7+
class Foo:
8+
v: Tuple[int, ...]
9+
```
10+
11+
* feat: Support variable length tuples ([74dd3d4](https://github.com/yukinarit/pyserde/commit/74dd3d4))
12+
* feat: Use tomllib for Python >= 3.11 ([b8943b5](https://github.com/yukinarit/pyserde/commit/b8943b5))
13+
114
## `0.9.3` (2022-11-10)
215

316
Thanks to [PEP681 @dataclass_transform](https://peps.python.org/pep-0681/), `@dataclass` decorator is no longer mandatory if you use a PEP681 supported type checker such as [pyright](https://github.com/microsoft/pyright). If you are a mypy user, you still need `@dataclass` decorator.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pyserde"
3-
version = "0.9.3"
3+
version = "0.9.4"
44
description = "Yet another serialization library on top of dataclasses"
55
authors = ["yukinarit <[email protected]>"]
66
license = "MIT"

0 commit comments

Comments
 (0)