Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 5.3.2
current_version = 5.3.3
commit = True
tag = False

Expand Down
18 changes: 16 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,29 @@
# Changelog

## [v5.3.2](https://github.com/tj-django/django-clone/tree/v5.3.2) (2023-05-27)
## [v5.3.3](https://github.com/tj-django/django-clone/tree/v5.3.3) (2023-06-12)

[Full Changelog](https://github.com/tj-django/django-clone/compare/v5.3.1...v5.3.2)
[Full Changelog](https://github.com/tj-django/django-clone/compare/v5.3.2...v5.3.3)

**Closed issues:**

- Dependency Dashboard [\#198](https://github.com/tj-django/django-clone/issues/198)

**Merged pull requests:**

- chore\(deps\): update tj-actions/verify-changed-files action to v15 [\#804](https://github.com/tj-django/django-clone/pull/804) ([renovate[bot]](https://github.com/apps/renovate))
- feat: add support for Django 4.2 [\#803](https://github.com/tj-django/django-clone/pull/803) ([jackton1](https://github.com/jackton1))
- chore\(deps\): update actions/checkout action to v3.5.3 [\#802](https://github.com/tj-django/django-clone/pull/802) ([renovate[bot]](https://github.com/apps/renovate))
- chore\(deps\): update dependency django to v4.2.2 [\#801](https://github.com/tj-django/django-clone/pull/801) ([renovate[bot]](https://github.com/apps/renovate))
- Updated docs [\#800](https://github.com/tj-django/django-clone/pull/800) ([github-actions[bot]](https://github.com/apps/github-actions))
- Upgraded v5.3.1 → v5.3.2 [\#799](https://github.com/tj-django/django-clone/pull/799) ([jackton1](https://github.com/jackton1))
- chore\(deps\): update tj-actions/github-changelog-generator action to v1.19 [\#797](https://github.com/tj-django/django-clone/pull/797) ([renovate[bot]](https://github.com/apps/renovate))

## [v5.3.2](https://github.com/tj-django/django-clone/tree/v5.3.2) (2023-05-27)

[Full Changelog](https://github.com/tj-django/django-clone/compare/v5.3.1...v5.3.2)

**Merged pull requests:**

- chore\(deps\): update dependency asgiref to v3.7.2 [\#796](https://github.com/tj-django/django-clone/pull/796) ([renovate[bot]](https://github.com/apps/renovate))
- chore\(deps\): update dependency asgiref to v3.7.1 [\#795](https://github.com/tj-django/django-clone/pull/795) ([renovate[bot]](https://github.com/apps/renovate))
- chore\(deps\): update dependency asgiref to v3.7.0 [\#794](https://github.com/tj-django/django-clone/pull/794) ([renovate[bot]](https://github.com/apps/renovate))
Expand Down
2 changes: 1 addition & 1 deletion model_clone/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

__author__ = """Tonye Jack"""
__email__ = "jtonye@ymail.com"
__version__ = "5.3.2"
__version__ = "5.3.3"

from model_clone.admin import CloneModelAdmin, CloneModelAdminMixin
from model_clone.mixin import CloneMixin
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@

setup(
name="django-clone",
version="5.3.2",
version="5.3.3",
description="Create a clone of a django model instance.",
python_requires=">=3.6",
long_description=LONG_DESCRIPTION,
Expand Down