diff --git a/README.md b/README.md index 9ca4539..f093bed 100644 --- a/README.md +++ b/README.md @@ -93,6 +93,7 @@ The following things are supported: * IPv4Address, IPv6Address * typing.Any * typing.NewType + * uuid.UUID Unions ------ diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 926b59c..cb93545 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,5 +1,6 @@ 2.28 ==== +* Add support for uuid.UUID 2.27 ==== diff --git a/docs/supported_types.md b/docs/supported_types.md index c8e9c02..4dfe263 100644 --- a/docs/supported_types.md +++ b/docs/supported_types.md @@ -452,6 +452,10 @@ Loads a string as a `Path`; when dumping it goes back to being a string. * `ipaddress.IPv4Interface` * `ipaddress.IPv6Interface` +### uuid.UUID + +* `uuid.UUID` + ```python In : typedload.load('10.1.1.3', IPv4Address) Out: IPv4Address('10.1.1.3')