Version 0.8.2

This commit is contained in:
James Socol 2016-01-07 14:49:45 -05:00
parent ed52036d7a
commit eb6b197d04
3 changed files with 8 additions and 2 deletions

View File

@ -1,6 +1,12 @@
CHANGES
=======
v0.8.2
------
* Fixed issue in helper autodiscovery that prevented some modules from
getting discovered.
v0.8.1
------

View File

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

View File

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