diff --git a/CHANGELOG.md b/CHANGELOG.md index 9429da1..3649d95 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,20 @@ # CHANGELOG +## v0.2.3 (2024-12-13) + +### Bug Fixes + +- Partial payload patch ([#9](https://github.com/NextGenContributions/django-ninja-crudl/pull/9), + [`ba5bda5`](https://github.com/NextGenContributions/django-ninja-crudl/commit/ba5bda5be54e50ebe5eaa0ea482517e9d43db5c7)) + +* fix: Partial payload patch + +* chore: Optimize import + +* fix: Patch schema did not have original field's metadata and validations + + ## v0.2.2 (2024-12-09) ### Bug Fixes diff --git a/django_ninja_crudl/__init__.py b/django_ninja_crudl/__init__.py index f531843..ec32f79 100644 --- a/django_ninja_crudl/__init__.py +++ b/django_ninja_crudl/__init__.py @@ -12,7 +12,7 @@ WithObjectActions, ) -__version__ = "0.2.2" +__version__ = "0.2.3" __all__ = [ "Crudl", diff --git a/pyproject.toml b/pyproject.toml index 04a3ba6..d825a00 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "django-ninja-crudl" -version = "0.2.2" +version = "0.2.3" description = "CRUDL REST API endpoints from Django ORM models using Django Ninja framework" requires-python = "==3.12.*" authors = [ diff --git a/uv.lock b/uv.lock index 4b7e56d..3429fbf 100644 --- a/uv.lock +++ b/uv.lock @@ -375,7 +375,7 @@ wheels = [ [[package]] name = "django-ninja-crudl" -version = "0.2.2" +version = "0.2.3" source = { editable = "." } dependencies = [ { name = "django2pydantic" },