Version 0.8

This commit is contained in:
James Socol
2015-10-20 08:44:43 -04:00
parent 395915c07a
commit 1f0fe8c8cf
3 changed files with 11 additions and 2 deletions

View File

@@ -1,6 +1,15 @@
CHANGES
=======
v0.8
----
* Dropped support for Django < 1.7.
* Added support for Django 1.8.
* Added support for AdminConfig classes in installed apps
* Removed jingo.env, use jingo.get_env().
* Fixed #50, resolves circular import.
v0.7.1
------

View File

@@ -53,7 +53,7 @@ except ImportError:
from django.template.context import get_standard_processors
has_engine = False
VERSION = (0, 7, 1)
VERSION = (0, 8, 0)
__version__ = '.'.join(map(str, VERSION))
EXCLUDE_APPS = (

View File

@@ -3,7 +3,7 @@ from setuptools import setup
setup(
name='jingo',
version='0.7.1',
version='0.8',
description='An adapter for using Jinja2 templates with Django.',
long_description=open('README.rst').read(),
author='Jeff Balogh',