diff --git a/docs/source/conf.py b/docs/source/conf.py index fcc3798..18d6bbb 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -62,7 +62,7 @@ copyright = u'2015, Jan-Jelle Kester' # The short X.Y version. version = '0.3' # The full version, including alpha/beta/rc tags. -release = '0.3.3' +release = '0.4.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/requirements.txt b/requirements.txt index 92f25c6..83357f2 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,2 @@ -Django>=1.7 +Django>=1.8 django-jsonfield>=1.0.0 diff --git a/setup.py b/setup.py index 3e5fee9..7c70404 100644 --- a/setup.py +++ b/setup.py @@ -2,16 +2,15 @@ from distutils.core import setup setup( name='django-auditlog', - version='0.3.3', + version='0.8.0', packages=['auditlog', 'auditlog.migrations'], package_dir={'': 'src'}, url='https://github.com/jjkester/django-auditlog', license='MIT', author='Jan-Jelle Kester', - author_email='janjelle@jjkester.nl', description='Audit log app for Django', install_requires=[ - 'Django>=1.7', - 'django-jsonfield>=0.9.13', + 'Django>=1.8', + 'django-jsonfield>=1.0.0', ] )