Skip to content

Commit

Permalink
Bump version to 2.9.0 (#646)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ross Mechanic committed Apr 23, 2020
1 parent 6f0d05e commit 73a4e0e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
13 changes: 7 additions & 6 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
Changes
=======

Unreleased
----------
- Changed how `now` is imported from `timezone` (`timezone` module is imported now)
2.9.0 (2020-04-23)
------------------
- Add simple filtering if provided a minutes argument in `clean_duplicate_history` (gh-606)
- Add setting to convert `FileField` to `CharField` instead of `TextField` (gh-623)
- Add setting to convert `FileField` to `CharField` instead of `TextField` (gh-625)
- Added notes on BitBucket Pipelines (gh-627)
- import model `ContentType` in `SimpleHistoryAdmin` using `django_apps.get_model`
to avoid possible `AppRegistryNotReady` exception (gh-630)
- Fix `utils.update_change_reason` when user specifies excluded_fields
- Fix `utils.update_change_reason` when user specifies excluded_fields (gh-637)
- Changed how `now` is imported from `timezone` (`timezone` module is imported now) (gh-643)
- Render fields as readonly in history detail view if `SIMPLE_HISTORY_EDIT` is not set
`True`
`True` (gh-641)
- settings.SIMPLE_HISTORY_REVERT_DISABLED if True removes the Revert
button from the history form for all historical models (gh-632))

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.8.0
current_version = 2.9.0
commit = True
tag = True
tag_name = {new_version}
Expand Down
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.8.0"
__version__ = "2.9.0"


def register(
Expand Down

0 comments on commit 73a4e0e

Please sign in to comment.