diff --git a/CHANGES.rst b/CHANGES.rst index db4e75c..aff48e4 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,5 +1,8 @@ Changes ------- +v2.0.2, 5/18/2017 +^^^^^^^^^^^^^^^^^ +- Fixed issue with GenericForeignKey field v2.0.1, 3/8/2017 ^^^^^^^^^^^^^^^^ diff --git a/setup.py b/setup.py index 435afa7..9a349ae 100644 --- a/setup.py +++ b/setup.py @@ -27,13 +27,13 @@ def run(self): setup( name='jsonfield', - version='2.0.1', + version='2.0.2', packages=['jsonfield'], license='MIT', include_package_data=True, - author='Brad Jasper', - author_email='bjasper@gmail.com', - url='https://github.com/bradjasper/django-jsonfield/', + author='Dan Koch', + author_email='dmkoch@gmail.com', + url='https://github.com/dmkoch/django-jsonfield/', description='A reusable Django field that allows you to store validated JSON in your model.', long_description=open("README.rst").read(), install_requires=['Django >= 1.8.0'],