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 v2.8.0 → v2.8.1 #421

Merged
merged 2 commits into from
Jul 14, 2021
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 = 2.8.0
current_version = 2.8.1
commit = True
tag = False

Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## [v2.8.1](https://github.com/tj-django/django-clone/tree/v2.8.1) (2021-07-13)

[Full Changelog](https://github.com/tj-django/django-clone/compare/v2.8.0...v2.8.1)

**Merged pull requests:**

- Update test to include python3.10 and pypy. [\#420](https://github.com/tj-django/django-clone/pull/420) ([jackton1](https://github.com/jackton1))
- Updated docs [\#419](https://github.com/tj-django/django-clone/pull/419) ([github-actions[bot]](https://github.com/apps/github-actions))
- Upgraded v2.7.2 → v2.8.0 [\#418](https://github.com/tj-django/django-clone/pull/418) ([jackton1](https://github.com/jackton1))

## [v2.8.0](https://github.com/tj-django/django-clone/tree/v2.8.0) (2021-07-11)

[Full Changelog](https://github.com/tj-django/django-clone/compare/v2.7.2...v2.8.0)
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__ = "2.8.0"
__version__ = "2.8.1"

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

setup(
name="django-clone",
version="2.8.0",
version="2.8.1",
description="Create a clone of a django model instance.",
python_requires=">=3.5",
long_description=LONG_DESCRIPTION,
Expand Down