File tree Expand file tree Collapse file tree 2 files changed +16
-1
lines changed
Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change 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 )
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " pyserde"
3- version = " 0.9.6 "
3+ version = " 0.9.7 "
44description = " Yet another serialization library on top of dataclasses"
55authors = [
" yukinarit <[email protected] >" ]
66license = " MIT"
You can’t perform that action at this time.
0 commit comments