Skip to content

Commit 8841b09

Browse files
Upgraded v2.9.0 → v2.9.1 (#437)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: jackton1 <jackton1@users.noreply.github.com>
1 parent 04c7bbf commit 8841b09

4 files changed

Lines changed: 28 additions & 5 deletions

File tree

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 2.9.0
2+
current_version = 2.9.1
33
commit = True
44
tag = False
55

CHANGELOG.md

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,36 @@
22

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

5-
[Full Changelog](https://github.com/tj-django/django-clone/compare/v2.9.0...HEAD)
5+
[Full Changelog](https://github.com/tj-django/django-clone/compare/v2.9.1...HEAD)
6+
7+
**Closed issues:**
8+
9+
- Dependency Dashboard [\#198](https://github.com/tj-django/django-clone/issues/198)
10+
11+
## [v2.9.1](https://github.com/tj-django/django-clone/tree/v2.9.1) (2021-07-23)
12+
13+
[Full Changelog](https://github.com/tj-django/django-clone/compare/v2.9.0...v2.9.1)
614

715
**Fixed bugs:**
816

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

20+
**Merged pull requests:**
21+
22+
- Resolve bug duplicating non str values [\#436](https://github.com/tj-django/django-clone/pull/436) ([jackton1](https://github.com/jackton1))
23+
- 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))
24+
- 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))
25+
- \[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))
26+
- 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))
27+
- 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))
28+
- Update codecov/codecov-action action to v2 [\#429](https://github.com/tj-django/django-clone/pull/429) ([renovate[bot]](https://github.com/apps/renovate))
29+
- 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))
30+
- Updated docs [\#427](https://github.com/tj-django/django-clone/pull/427) ([github-actions[bot]](https://github.com/apps/github-actions))
31+
- Updated docs [\#426](https://github.com/tj-django/django-clone/pull/426) ([github-actions[bot]](https://github.com/apps/github-actions))
32+
- Updated docs [\#425](https://github.com/tj-django/django-clone/pull/425) ([github-actions[bot]](https://github.com/apps/github-actions))
33+
- Upgraded v2.8.1 → v2.9.0 [\#424](https://github.com/tj-django/django-clone/pull/424) ([jackton1](https://github.com/jackton1))
34+
1135
## [v2.9.0](https://github.com/tj-django/django-clone/tree/v2.9.0) (2021-07-18)
1236

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

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

4063
**Merged pull requests:**
4164

model_clone/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
__author__ = """Tonye Jack"""
44
__email__ = "jtonye@ymail.com"
5-
__version__ = "2.9.0"
5+
__version__ = "2.9.1"
66

77
from model_clone.admin import CloneModelAdmin, CloneModelAdminMixin
88
from model_clone.mixins.clone import CloneMixin

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565

6666
setup(
6767
name="django-clone",
68-
version="2.9.0",
68+
version="2.9.1",
6969
description="Create a clone of a django model instance.",
7070
python_requires=">=3.5",
7171
long_description=LONG_DESCRIPTION,

0 commit comments

Comments
 (0)