Skip to content

Commit

Permalink
Prepare for v2.12.0 release! (#724)
Browse files Browse the repository at this point in the history
  • Loading branch information
ThePumpingLemma committed Oct 14, 2020
1 parent 9afa595 commit 5f02c07
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
7 changes: 6 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ Changes

Unreleased
----------

2.12.0 (2020-10-14)
-------------------
- Add default date to ``bulk_create_with_history`` and ``bulk_update_with_history`` (gh-687)
- Exclude ManyToManyFields when using ``bulk_create_with_history`` (gh-699)
- Added ``--excluded_fields`` argument to ``clean_duplicate_history`` command (gh-674)
Expand All @@ -12,7 +15,9 @@ Unreleased
- Add optional ``manager`` argument to ``bulk_update_with_history`` to use instead of
the default manager (gh-703)
- Add support for Django 3.1 (gh-713)
- Fix a bug with ``clean_old_history`` command's `--days` argument
- Fix a bug with ``clean_old_history`` command's `--days` argument (gh-722)

\* NOTE: This will be the last minor release before 3.0.0.

2.11.0 (2020-06-20)
-------------------
Expand Down
3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.11.0
current_version = 2.12.0
commit = True
tag = True
tag_name = {new_version}
Expand All @@ -8,4 +8,3 @@ tag_name = {new_version}

[bdist_wheel]
universal = 1

2 changes: 1 addition & 1 deletion simple_history/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from __future__ import unicode_literals

__version__ = "2.11.0"
__version__ = "2.12.0"


def register(
Expand Down

0 comments on commit 5f02c07

Please sign in to comment.