Skip to content

Commit 73a4e0e

Browse files
author
Ross Mechanic
authored
Bump version to 2.9.0 (#646)
1 parent 6f0d05e commit 73a4e0e

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

CHANGES.rst

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
Changes
22
=======
33

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

setup.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.8.0
2+
current_version = 2.9.0
33
commit = True
44
tag = True
55
tag_name = {new_version}

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.8.0"
3+
__version__ = "2.9.0"
44

55

66
def register(

0 commit comments

Comments
 (0)