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.9.0 → v2.9.1 #437

Merged
merged 2 commits into from
Jul 24, 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.9.0
current_version = 2.9.1
commit = True
tag = False

Expand Down
27 changes: 25 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,36 @@

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

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

**Closed issues:**

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

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

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

**Fixed bugs:**

- \[BUG\] unsupported operand type\(s\) for +: 'NoneType' and 'str' [\#433](https://github.com/tj-django/django-clone/issues/433)
- `UniqueConstraint` in Model Meta is not considered [\#330](https://github.com/tj-django/django-clone/issues/330)

**Merged pull requests:**

- Resolve bug duplicating non str values [\#436](https://github.com/tj-django/django-clone/pull/436) ([jackton1](https://github.com/jackton1))
- Update codecov/codecov-action action to v2.0.2 [\#435](https://github.com/tj-django/django-clone/pull/435) ([renovate[bot]](https://github.com/apps/renovate))
- Update codacy/codacy-analysis-cli-action action to v4 [\#434](https://github.com/tj-django/django-clone/pull/434) ([renovate[bot]](https://github.com/apps/renovate))
- \[pre-commit.ci\] pre-commit autoupdate [\#432](https://github.com/tj-django/django-clone/pull/432) ([pre-commit-ci[bot]](https://github.com/apps/pre-commit-ci))
- Update codacy/codacy-analysis-cli-action action to v3 [\#431](https://github.com/tj-django/django-clone/pull/431) ([renovate[bot]](https://github.com/apps/renovate))
- Update tj-django/django-migration-fixer action to v1.1.2 [\#430](https://github.com/tj-django/django-clone/pull/430) ([renovate[bot]](https://github.com/apps/renovate))
- Update codecov/codecov-action action to v2 [\#429](https://github.com/tj-django/django-clone/pull/429) ([renovate[bot]](https://github.com/apps/renovate))
- Update tj-django/django-migration-fixer action to v1.1.1 [\#428](https://github.com/tj-django/django-clone/pull/428) ([renovate[bot]](https://github.com/apps/renovate))
- Updated docs [\#427](https://github.com/tj-django/django-clone/pull/427) ([github-actions[bot]](https://github.com/apps/github-actions))
- Updated docs [\#426](https://github.com/tj-django/django-clone/pull/426) ([github-actions[bot]](https://github.com/apps/github-actions))
- Updated docs [\#425](https://github.com/tj-django/django-clone/pull/425) ([github-actions[bot]](https://github.com/apps/github-actions))
- Upgraded v2.8.1 → v2.9.0 [\#424](https://github.com/tj-django/django-clone/pull/424) ([jackton1](https://github.com/jackton1))

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

[Full Changelog](https://github.com/tj-django/django-clone/compare/v2.8.1...v2.9.0)
Expand Down Expand Up @@ -35,7 +59,6 @@
**Closed issues:**

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

**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.9.0"
__version__ = "2.9.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.9.0",
version="2.9.1",
description="Create a clone of a django model instance.",
python_requires=">=3.5",
long_description=LONG_DESCRIPTION,
Expand Down