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 = 4.0.1
current_version = 4.0.2
commit = True
tag = False

Expand Down
28 changes: 24 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# Changelog

## [Unreleased](https://github.com/tj-django/django-clone/tree/HEAD)

[Full Changelog](https://github.com/tj-django/django-clone/compare/v4.0.2...HEAD)

**Fixed bugs:**

- \[BUG\] duplicate functional -\> duplicate records [\#672](https://github.com/tj-django/django-clone/issues/672)

## [v4.0.2](https://github.com/tj-django/django-clone/tree/v4.0.2) (2022-11-01)

[Full Changelog](https://github.com/tj-django/django-clone/compare/v4.0.1...v4.0.2)

**Closed issues:**

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

**Merged pull requests:**

- Update dependency pytz to v2022.6 [\#675](https://github.com/tj-django/django-clone/pull/675) ([renovate[bot]](https://github.com/apps/renovate))
- \[pre-commit.ci\] pre-commit autoupdate [\#674](https://github.com/tj-django/django-clone/pull/674) ([pre-commit-ci[bot]](https://github.com/apps/pre-commit-ci))
- chore: remove unused code block [\#673](https://github.com/tj-django/django-clone/pull/673) ([jackton1](https://github.com/jackton1))
- Updated docs [\#671](https://github.com/tj-django/django-clone/pull/671) ([github-actions[bot]](https://github.com/apps/github-actions))
- Upgraded v4.0.0 → v4.0.1 [\#670](https://github.com/tj-django/django-clone/pull/670) ([jackton1](https://github.com/jackton1))

## [v4.0.1](https://github.com/tj-django/django-clone/tree/v4.0.1) (2022-10-29)

[Full Changelog](https://github.com/tj-django/django-clone/compare/v4.0.0...v4.0.1)
Expand Down Expand Up @@ -29,10 +53,6 @@

- \[BUG\] Readme examples outdated [\#663](https://github.com/tj-django/django-clone/issues/663)

**Closed issues:**

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

**Merged pull requests:**

- Updated docs [\#667](https://github.com/tj-django/django-clone/pull/667) ([github-actions[bot]](https://github.com/apps/github-actions))
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__ = "4.0.1"
__version__ = "4.0.2"

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 @@ -55,7 +55,7 @@

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