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.1.0 → v5.2.0 #739

Merged
merged 2 commits into from
Jan 2, 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.1.0
current_version = 5.2.0
commit = True
tag = False

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

## [v5.1.0](https://github.com/tj-django/django-clone/tree/v5.1.0) (2022-12-28)
## [Unreleased](https://github.com/tj-django/django-clone/tree/HEAD)

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

**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)

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

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

**Closed issues:**

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

**Merged pull requests:**

- chore: remove unused dependency [\#738](https://github.com/tj-django/django-clone/pull/738) ([jackton1](https://github.com/jackton1))
- chore\(deps\): update tj-actions/github-changelog-generator action to v1.17 [\#737](https://github.com/tj-django/django-clone/pull/737) ([renovate[bot]](https://github.com/apps/renovate))
- chore\(deps\): update tj-actions/github-changelog-generator action to v1.16 [\#736](https://github.com/tj-django/django-clone/pull/736) ([renovate[bot]](https://github.com/apps/renovate))
- Updated docs [\#735](https://github.com/tj-django/django-clone/pull/735) ([github-actions[bot]](https://github.com/apps/github-actions))
- Upgraded v5.0.0 → v5.1.0 [\#734](https://github.com/tj-django/django-clone/pull/734) ([jackton1](https://github.com/jackton1))

## [v5.1.0](https://github.com/tj-django/django-clone/tree/v5.1.0) (2022-12-28)

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

**Merged pull requests:**

- chore: update imports [\#733](https://github.com/tj-django/django-clone/pull/733) ([jackton1](https://github.com/jackton1))
- Updated docs [\#732](https://github.com/tj-django/django-clone/pull/732) ([github-actions[bot]](https://github.com/apps/github-actions))
- Updated README.md [\#731](https://github.com/tj-django/django-clone/pull/731) ([jackton1](https://github.com/jackton1))
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__ = "[email protected]"
__version__ = "5.1.0"
__version__ = "5.2.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.1.0",
version="5.2.0",
description="Create a clone of a django model instance.",
python_requires=">=3.6",
long_description=LONG_DESCRIPTION,
Expand Down