Skip to content

Commit 2fab8b1

Browse files
committed
Release 8.5.10
1 parent 65ed180 commit 2fab8b1

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
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`

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from setuptools import setup, find_packages
22

3-
VERSION = "8.5.9"
3+
VERSION = "8.5.10"
44

55
CLASSIFIERS = [
66
"Development Status :: 4 - Beta",

0 commit comments

Comments
 (0)