Skip to content

Commit 6da7f33

Browse files
author
Ross Mechanic
committed
Prepare for 2.0 releaseD
1 parent 9d6704a commit 6da7f33

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

CHANGES.rst

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

4-
Unreleased
5-
----------
4+
2.0 (2018-04-05)
5+
----------------
66
- Added Django 2.0 support (gh-330)
77
- Dropped support for Django<=1.10 (gh-356)
88
- Fix bug where history_view ignored user permissions (gh-361)

README.rst

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,7 @@ django-simple-history
2020

2121
django-simple-history stores Django model state on every create/update/delete.
2222

23-
This app requires Django 1.11 or 2.0 and Python 2.7, or 3.4 or greater.
24-
However, the most recent release (1.9.1) supports Django>=1.7,<2.0. The next
25-
release will include Django 2.0 support.
23+
This app supports Django 1.11 and 2.0 and Python 2.7, or 3.4 or greater.
2624

2725
Getting Help
2826
------------

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 = 1.9.1
2+
current_version = 2.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__ = '1.9.1'
3+
__version__ = '2.0'
44

55

66
def register(

0 commit comments

Comments
 (0)