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 v3.0.0 → v3.0.1 #540

Merged
merged 2 commits into from
Jan 17, 2022
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 = 3.0.0
current_version = 3.0.1
commit = True
tag = False

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

## [v3.0.0](https://github.com/tj-django/django-clone/tree/v3.0.0) (2022-01-09)
## [v3.0.1](https://github.com/tj-django/django-clone/tree/v3.0.1) (2022-01-17)

[Full Changelog](https://github.com/tj-django/django-clone/compare/v2.9.6...v3.0.0)
[Full Changelog](https://github.com/tj-django/django-clone/compare/v3.0.0...v3.0.1)

**Closed issues:**

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

**Merged pull requests:**

- Added support for django4.0 [\#539](https://github.com/tj-django/django-clone/pull/539) ([jackton1](https://github.com/jackton1))
- Update wearerequired/lint-action action to v1.11.1 [\#538](https://github.com/tj-django/django-clone/pull/538) ([renovate[bot]](https://github.com/apps/renovate))
- Update wearerequired/lint-action action to v1.11.0 [\#537](https://github.com/tj-django/django-clone/pull/537) ([renovate[bot]](https://github.com/apps/renovate))
- Updated docs [\#536](https://github.com/tj-django/django-clone/pull/536) ([github-actions[bot]](https://github.com/apps/github-actions))
- Upgraded v2.9.6 → v3.0.0 [\#535](https://github.com/tj-django/django-clone/pull/535) ([jackton1](https://github.com/jackton1))

## [v3.0.0](https://github.com/tj-django/django-clone/tree/v3.0.0) (2022-01-09)

[Full Changelog](https://github.com/tj-django/django-clone/compare/v2.9.6...v3.0.0)

**Merged pull requests:**

- chore: Move mixin to a module and dropped support for python3.5 [\#534](https://github.com/tj-django/django-clone/pull/534) ([jackton1](https://github.com/jackton1))
- Update dependency django to v4.0.1 [\#533](https://github.com/tj-django/django-clone/pull/533) ([renovate[bot]](https://github.com/apps/renovate))
- Update tj-actions/remark action to v2.3 [\#532](https://github.com/tj-django/django-clone/pull/532) ([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__ = "[email protected]"
__version__ = "3.0.0"
__version__ = "3.0.1"

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

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