Skip to content

Commit 4227ee6

Browse files
committed
chore: Bump version to 0.9.7
1 parent 063e705 commit 4227ee6

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
## `0.9.7` (2022-12-15)
2+
3+
A bug for optional unions was fixed, Thanks [@soaxelbrooke](https://github.com/soaxelbrooke)!
4+
```python
5+
@serde
6+
@dataclass(frozen=True)
7+
class Bar:
8+
request: Optional[Union[str, int]]
9+
```
10+
11+
* docs: add @soaxelbrooke as a contributor ([063e705](https://github.com/yukinarit/pyserde/commit/063e705))
12+
* Add support for optional unions ([075949b](https://github.com/yukinarit/pyserde/commit/075949b))
13+
* Add typing-utils for compatibility with python ver < 3.8 ([620b9f6](https://github.com/yukinarit/pyserde/commit/620b9f6))
14+
* Rely on compay.get_args instead of adding dependency ([d93f894](https://github.com/yukinarit/pyserde/commit/d93f894))
15+
116
## `0.9.6` (2022-12-05)
217

318
* Recursive dataclasses are supported in [#290](https://github.com/yukinarit/pyserde/pull/290)

pyproject.toml

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

0 commit comments

Comments
 (0)