Skip to content

Commit 8b62857

Browse files
authored
Merge pull request #284 from treyhunner/new-release
Prepare 1.9.0 Release
2 parents b5a650a + 5c54cc2 commit 8b62857

File tree

3 files changed

+19
-6
lines changed

3 files changed

+19
-6
lines changed

CHANGES.rst

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
Changes
22
=======
33

4-
tip (unreleased)
5-
----------------
6-
- Added --batchsize option to the populate_history management command.
7-
- Add the ability to display object attributes in the history list view to see
8-
what has changed easily
4+
1.9.0 (2017-06-11)
5+
------------------
6+
- Add --batchsize option to the populate_history management command. (gh-231)
7+
- Add ability to show specific attributes in admin history list view. (gh-256)
8+
- Add Brazilian Portuguese translation file. (gh-279)
9+
- Fix locale file packaging issue. (gh-280)
10+
- Add ability to specify reason for history change. (gh-275)
11+
- Test against Django 1.11 and Python 3.6. (gh-276)
12+
- Add `excluded_fields` option to exclude fields from history. (gh-274)
913

1014
1.8.2 (2017-01-19)
1115
------------------

setup.cfg

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,11 @@
1+
[bumpversion]
2+
current_version = 1.9.0
3+
commit = True
4+
tag = True
5+
tag_name = {new_version}
6+
7+
[bumpversion:file:simple_history/__init__.py]
8+
19
[bdist_wheel]
210
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__ = '1.8.2'
3+
__version__ = '1.9.0'
44

55

66
def register(

0 commit comments

Comments
 (0)