Skip to content

Commit

Permalink
Upgraded v2.6.1 → v2.7.0 (#385)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: jackton1 <jackton1@users.noreply.github.com>
  • Loading branch information
3 people authored Jun 24, 2021
1 parent 01d1a68 commit 5d1270b
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 4 deletions.
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.6.1
current_version = 2.7.0
commit = True
tag = False

Expand Down
33 changes: 32 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,37 @@
# Changelog

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

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

**Closed issues:**

- Add release automation which would be triggered by a new release. [\#231](https://github.com/tj-django/django-clone/issues/231)

## [v2.7.0](https://github.com/tj-django/django-clone/tree/v2.7.0) (2021-06-24)

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

**Fixed bugs:**

- UUIDField with unique re-uses previous value and raises an IntegrityError [\#381](https://github.com/tj-django/django-clone/issues/381)

**Closed issues:**

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

**Merged pull requests:**

- Updated translation to exclude sample apps [\#384](https://github.com/tj-django/django-clone/pull/384) ([jackton1](https://github.com/jackton1))
- Resolve bug re-using the source instance value. [\#383](https://github.com/tj-django/django-clone/pull/383) ([jackton1](https://github.com/jackton1))
- Updated translation. [\#382](https://github.com/tj-django/django-clone/pull/382) ([jackton1](https://github.com/jackton1))
- Update tj-actions/verify-changed-files action to v7 [\#380](https://github.com/tj-django/django-clone/pull/380) ([renovate[bot]](https://github.com/apps/renovate))
- Fix typo in doc strings. [\#379](https://github.com/tj-django/django-clone/pull/379) ([jackton1](https://github.com/jackton1))
- Update precommit hook pycqa/isort to v5.9.1 [\#378](https://github.com/tj-django/django-clone/pull/378) ([renovate[bot]](https://github.com/apps/renovate))
- Update precommit hook pycqa/isort to v5.9.0 [\#377](https://github.com/tj-django/django-clone/pull/377) ([renovate[bot]](https://github.com/apps/renovate))
- Updated docs [\#376](https://github.com/tj-django/django-clone/pull/376) ([github-actions[bot]](https://github.com/apps/github-actions))
- Upgraded v2.6.0 → v2.6.1 [\#375](https://github.com/tj-django/django-clone/pull/375) ([jackton1](https://github.com/jackton1))

## [v2.6.1](https://github.com/tj-django/django-clone/tree/v2.6.1) (2021-06-19)

[Full Changelog](https://github.com/tj-django/django-clone/compare/v2.6.0...v2.6.1)
Expand All @@ -25,7 +57,6 @@
**Closed issues:**

- How to clone a question with its choices? [\#315](https://github.com/tj-django/django-clone/issues/315)
- Dependency Dashboard [\#198](https://github.com/tj-django/django-clone/issues/198)
- Cloning complex model relationships [\#175](https://github.com/tj-django/django-clone/issues/175)

**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__ = "2.6.1"
__version__ = "2.7.0"

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

0 comments on commit 5d1270b

Please sign in to comment.