Skip to content

Commit

Permalink
Update packages (#228)
Browse files Browse the repository at this point in the history
  • Loading branch information
zmievsa authored Nov 6, 2024
1 parent bb1e983 commit 75abd8d
Show file tree
Hide file tree
Showing 4 changed files with 58 additions and 52 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ Please follow [the Keep a Changelog standard](https://keepachangelog.com/en/1.0.

## [Unreleased]

## [4.4.3]

### Changed

* Bumped package versions

## [4.4.2]

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion cadwyn/schema_generation.py
Original file line number Diff line number Diff line change
Expand Up @@ -631,7 +631,7 @@ def __getitem__(self, model: type[_T_ANY_MODEL], /) -> type[_T_ANY_MODEL]:
wrapper = self._get_wrapper_for_model(model)
model_copy = wrapper.generate_model_copy(self)
self.concrete_models[model] = model_copy
return model_copy
return cast(type[_T_ANY_MODEL], model_copy)

@overload
def _get_wrapper_for_model(self, model: type[BaseModel]) -> "_PydanticModelWrapper[BaseModel]": ...
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "cadwyn"
version = "4.4.2"
version = "4.4.3"
description = "Production-ready community-driven modern Stripe-like API versioning in FastAPI"
authors = [{ name = "Stanislav Zmiev", email = "zmievsa@gmail.com" }]
license = "MIT"
Expand Down
Loading

0 comments on commit 75abd8d

Please sign in to comment.