Skip to content

Commit 5f02c07

Browse files
Prepare for v2.12.0 release! (#724)
1 parent 9afa595 commit 5f02c07

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGES.rst

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ Changes
33

44
Unreleased
55
----------
6+
7+
2.12.0 (2020-10-14)
8+
-------------------
69
- Add default date to ``bulk_create_with_history`` and ``bulk_update_with_history`` (gh-687)
710
- Exclude ManyToManyFields when using ``bulk_create_with_history`` (gh-699)
811
- Added ``--excluded_fields`` argument to ``clean_duplicate_history`` command (gh-674)
@@ -12,7 +15,9 @@ Unreleased
1215
- Add optional ``manager`` argument to ``bulk_update_with_history`` to use instead of
1316
the default manager (gh-703)
1417
- Add support for Django 3.1 (gh-713)
15-
- Fix a bug with ``clean_old_history`` command's `--days` argument
18+
- Fix a bug with ``clean_old_history`` command's `--days` argument (gh-722)
19+
20+
\* NOTE: This will be the last minor release before 3.0.0.
1621

1722
2.11.0 (2020-06-20)
1823
-------------------

setup.cfg

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 2.11.0
2+
current_version = 2.12.0
33
commit = True
44
tag = True
55
tag_name = {new_version}
@@ -8,4 +8,3 @@ tag_name = {new_version}
88

99
[bdist_wheel]
1010
universal = 1
11-

simple_history/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from __future__ import unicode_literals
22

3-
__version__ = "2.11.0"
3+
__version__ = "2.12.0"
44

55

66
def register(

0 commit comments

Comments
 (0)