File tree Expand file tree Collapse file tree 2 files changed +18
-1
lines changed Expand file tree Collapse file tree 2 files changed +18
-1
lines changed Original file line number Diff line number Diff line change 11# marshmallow\_ dataclass change log
22
3+ ## v8.5.10 (2022-11-09)
4+
5+ - We now test under python version 3.11 (as well as 3.6 through 3.10). ([ #220 ] [ ] )
6+
7+ - Recognize the variable-length, homogeneous tuple types `Tuple[ T,
8+ ...] ` (and ` tuple[ T, ...] ` under python >= 3.8). These are
9+ equivalent to the previously recognized ` Sequence[T] ` . ([ #221 ] [ ] )
10+
11+ - Recognize PEP 604, ` T | U ` , union notation (requires python >=
12+ 3.10). Fixes [ #194 ] [ ] . ([ #219 ] [ ] )
13+
14+ [ #181 ] : https://github.com/lovasoa/marshmallow_dataclass/issues/181
15+ [ #194 ] : https://github.com/lovasoa/marshmallow_dataclass/issues/194
16+ [ #219 ] : https://github.com/lovasoa/marshmallow_dataclass/pull/219
17+ [ #220 ] : https://github.com/lovasoa/marshmallow_dataclass/pull/220
18+ [ #221 ] : https://github.com/lovasoa/marshmallow_dataclass/pull/221
19+
320## v8.5.9 (2022-10-04)
421
522 - Fix [ #206 ] [ ] : NewType breakage with ` typing-inspect>=0.8.0 `
Original file line number Diff line number Diff line change 11from setuptools import setup , find_packages
22
3- VERSION = "8.5.9 "
3+ VERSION = "8.5.10 "
44
55CLASSIFIERS = [
66 "Development Status :: 4 - Beta" ,
You can’t perform that action at this time.
0 commit comments