diff --git a/docs/source/conf.py b/docs/source/conf.py index 933d18a..3166d13 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -53,7 +53,7 @@ master_doc = 'index' # General information about the project. project = u'django-auditlog' -copyright = u'2017, Jan-Jelle Kester' +copyright = u'2017, Jan-Jelle Kester and contributors' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the @@ -62,7 +62,7 @@ copyright = u'2017, Jan-Jelle Kester' # The short X.Y version. version = '0.4' # The full version, including alpha/beta/rc tags. -release = '0.4.3' +release = '0.4.4' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 53aa18c..18bd30b 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from distutils.core import setup setup( name='django-auditlog', - version='0.4.3', + version='0.4.4', packages=['auditlog', 'auditlog.migrations', 'auditlog.management', 'auditlog.management.commands'], package_dir={'': 'src'}, url='https://github.com/jjkester/django-auditlog', @@ -10,8 +10,8 @@ setup( author='Jan-Jelle Kester', description='Audit log app for Django', install_requires=[ - 'Django>=1.8', 'django-jsonfield>=1.0.0', + 'python-dateutil==2.6.0' ], zip_safe=False )