didactic-fastapi 0.3.0__tar.gz → 0.3.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: didactic-fastapi
3
- Version: 0.3.0
3
+ Version: 0.3.2
4
4
  Summary: FastAPI integration for didactic Models.
5
5
  Author-email: Aaron Steven White <aaronstevenwhite@gmail.com>
6
6
  License-Expression: MIT
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "didactic-fastapi"
7
- version = "0.3.0"
7
+ version = "0.3.2"
8
8
  description = "FastAPI integration for didactic Models."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.14"
@@ -23,7 +23,7 @@ from didactic.fastapi._adapter import (
23
23
  register_validation_handler,
24
24
  )
25
25
 
26
- __version__ = "0.3.0"
26
+ __version__ = "0.3.2"
27
27
 
28
28
  __all__ = [
29
29
  "__version__",
@@ -24,7 +24,6 @@ if TYPE_CHECKING:
24
24
  import didactic.api as dx
25
25
  from fastapi import FastAPI
26
26
 
27
-
28
27
  # cache the conversion so each Model maps to the same Pydantic class
29
28
  _CACHE: dict[type, type] = {}
30
29