diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ad219b..d8ca3aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ +## v4.1.0 (2022-11-14) +### Feature +* Provide action decorator to pass label, description and atts to the admin method ([#141](https://github.com/crccheck/django-object-actions/issues/141)) ([`5638f99`](https://github.com/crccheck/django-object-actions/commit/5638f999d32ea7f6de60b895d23ce89624120769)) + +### Fix +* Fix link to ci.yml in README ([#139](https://github.com/crccheck/django-object-actions/issues/139)) ([`700dd9b`](https://github.com/crccheck/django-object-actions/commit/700dd9b848aea67c759dca61cd815a27b6b16fd1)) + ## v4.0.0 (2022-03-12) ### Feature * Drop Python 3.6 support ([#135](https://github.com/crccheck/django-object-actions/issues/135)) ([`8deebed`](https://github.com/crccheck/django-object-actions/commit/8deebedda55d0e5d466969c7f27a9c60e680e5e8)) diff --git a/django_object_actions/__init__.py b/django_object_actions/__init__.py index e884dff..ba76381 100644 --- a/django_object_actions/__init__.py +++ b/django_object_actions/__init__.py @@ -1,5 +1,5 @@ """A Django app for adding object tools for models in the admin.""" -__version__ = "4.0.0" +__version__ = "4.1.0" # kind of like __all__, make these available for public diff --git a/pyproject.toml b/pyproject.toml index d68d546..f3cb041 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "django-object-actions" -version = "4.0.0" +version = "4.1.0" description = "A Django app for adding object tools for models in the admin" authors = ["crccheck "] license = "Apache-2.0"