Merge pull request #66 from jjkester/v0.4.0

Release 0.4.0
This commit is contained in:
Jan-Jelle Kester 2016-08-17 23:08:59 +02:00 committed by GitHub
commit e448450b03
3 changed files with 5 additions and 6 deletions

View file

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

View file

@ -1,2 +1,2 @@
Django>=1.7
Django>=1.8
django-jsonfield>=1.0.0

View file

@ -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',
]
)