Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgraded v5.2.0 → v5.3.0 #758

Merged
merged 2 commits into from
Jan 31, 2023
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.2.0
current_version = 5.3.0
commit = True
tag = False

Expand Down
34 changes: 28 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,42 @@
# Changelog

## [Unreleased](https://github.com/tj-django/django-clone/tree/HEAD)
## [v5.3.0](https://github.com/tj-django/django-clone/tree/v5.3.0) (2023-01-30)

[Full Changelog](https://github.com/tj-django/django-clone/compare/v5.2.0...HEAD)
[Full Changelog](https://github.com/tj-django/django-clone/compare/v5.2.0...v5.3.0)

**Implemented enhancements:**

- \[Feature\] Create m2m relations with existing objects new.m2mfield.set\(old.m2mfield.all\(\)\) [\#703](https://github.com/tj-django/django-clone/issues/703)

**Closed issues:**

- CVE-2022-40899 \(Medium\) detected in future-0.18.2.tar.gz - autoclosed [\#726](https://github.com/tj-django/django-clone/issues/726)
- Dependency Dashboard [\#198](https://github.com/tj-django/django-clone/issues/198)

## [v5.2.0](https://github.com/tj-django/django-clone/tree/v5.2.0) (2022-12-30)
**Merged pull requests:**

[Full Changelog](https://github.com/tj-django/django-clone/compare/v5.1.0...v5.2.0)
- Updated README.md [\#756](https://github.com/tj-django/django-clone/pull/756) ([jackton1](https://github.com/jackton1))
- Updated docs [\#755](https://github.com/tj-django/django-clone/pull/755) ([github-actions[bot]](https://github.com/apps/github-actions))
- docs: add DanielSchaffer as a contributor for code, and test [\#754](https://github.com/tj-django/django-clone/pull/754) ([allcontributors[bot]](https://github.com/apps/allcontributors))
- fix: error running pre-commit [\#753](https://github.com/tj-django/django-clone/pull/753) ([jackton1](https://github.com/jackton1))
- feat: add option to link existing objects of m2m fields instead of cloning them [\#752](https://github.com/tj-django/django-clone/pull/752) ([DanielSchaffer](https://github.com/DanielSchaffer))
- Updated docs [\#751](https://github.com/tj-django/django-clone/pull/751) ([github-actions[bot]](https://github.com/apps/github-actions))
- Updated README.md [\#750](https://github.com/tj-django/django-clone/pull/750) ([jackton1](https://github.com/jackton1))
- chore\(deps\): update peaceiris/actions-gh-pages action to v3.9.2 [\#749](https://github.com/tj-django/django-clone/pull/749) ([renovate[bot]](https://github.com/apps/renovate))
- \[pre-commit.ci\] pre-commit autoupdate [\#748](https://github.com/tj-django/django-clone/pull/748) ([pre-commit-ci[bot]](https://github.com/apps/pre-commit-ci))
- chore\(deps\): update tj-actions/semver-diff action to v2.4.1 [\#747](https://github.com/tj-django/django-clone/pull/747) ([renovate[bot]](https://github.com/apps/renovate))
- chore\(deps\): update tj-actions/semver-diff action to v2.4.0 [\#746](https://github.com/tj-django/django-clone/pull/746) ([renovate[bot]](https://github.com/apps/renovate))
- Bump tj-actions/semver-diff from 2.2.0 to 2.3.0 [\#745](https://github.com/tj-django/django-clone/pull/745) ([dependabot[bot]](https://github.com/apps/dependabot))
- chore\(deps\): update tj-actions/semver-diff action to v2.2.0 [\#744](https://github.com/tj-django/django-clone/pull/744) ([renovate[bot]](https://github.com/apps/renovate))
- chore\(deps\): update actions/checkout action to v3.3.0 [\#743](https://github.com/tj-django/django-clone/pull/743) ([renovate[bot]](https://github.com/apps/renovate))
- chore\(deps\): update peaceiris/actions-gh-pages action to v3.9.1 [\#742](https://github.com/tj-django/django-clone/pull/742) ([renovate[bot]](https://github.com/apps/renovate))
- Updated docs [\#741](https://github.com/tj-django/django-clone/pull/741) ([github-actions[bot]](https://github.com/apps/github-actions))
- chore\(deps\): update dependency django to v4.1.5 [\#740](https://github.com/tj-django/django-clone/pull/740) ([renovate[bot]](https://github.com/apps/renovate))
- Upgraded v5.1.0 → v5.2.0 [\#739](https://github.com/tj-django/django-clone/pull/739) ([jackton1](https://github.com/jackton1))

**Closed issues:**
## [v5.2.0](https://github.com/tj-django/django-clone/tree/v5.2.0) (2022-12-30)

- Dependency Dashboard [\#198](https://github.com/tj-django/django-clone/issues/198)
[Full Changelog](https://github.com/tj-django/django-clone/compare/v5.1.0...v5.2.0)

**Merged pull requests:**

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.2.0"
__version__ = "5.3.0"

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.2.0",
version="5.3.0",
description="Create a clone of a django model instance.",
python_requires=">=3.6",
long_description=LONG_DESCRIPTION,
Expand Down