diff --git a/CHANGES.rst b/CHANGES.rst index 517252b..db4e75c 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,11 @@ Changes ------- +v2.0.1, 3/8/2017 +^^^^^^^^^^^^^^^^ +- Support upcoming Django 1.11 in test suite +- Renamed method `get_db_prep_value` to `get_prep_value` + v2.0.0, 3/4/2017 ^^^^^^^^^^^^^^^^ - Added Django 1.9 and 1.10 support, removed support for Django versions older than 1.8, fixed to_python to allow for empty string diff --git a/MANIFEST.in b/MANIFEST.in index 9d5d250..7545927 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,2 +1,3 @@ +include CHANGES.rst include LICENSE include README.rst diff --git a/README.rst b/README.rst index 92cec2c..ff05481 100644 --- a/README.rst +++ b/README.rst @@ -7,7 +7,7 @@ django-jsonfield is a reusable Django field that allows you to store validated J It silently takes care of serialization. To use, simply add the field to one of your models. -Python 3 & Django 1.8 through 1.10 supported! +Python 3 & Django 1.8 through 1.11 supported! **Use PostgreSQL?** 1.0.0 introduced a breaking change to the underlying data type, so if you were using < 1.0.0 please read https://github.com/bradjasper/django-jsonfield/issues/57 before upgrading. diff --git a/setup.py b/setup.py index 7f6e012..2fcc63d 100644 --- a/setup.py +++ b/setup.py @@ -27,9 +27,10 @@ def run(self): setup( name='jsonfield', - version='2.0.0', + version='2.0.1', packages=['jsonfield'], license='MIT', + include_package_data=True, author='Brad Jasper', author_email='bjasper@gmail.com', url='https://github.com/bradjasper/django-jsonfield/',