Merge pull request #150 from jjkester/v0.4.4

Version 0.4.4
This commit is contained in:
Jan-Jelle Kester 2017-11-18 16:04:01 +01:00 committed by GitHub
commit e33aef85d5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View file

@ -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.

View file

@ -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
)