diff --git a/docs/changelog.rst b/docs/changelog.rst index ee5d4df..1949c59 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,10 @@ Changelog ========= +0.13 +^^^^^^ +* Update Jinja version + 0.12 ^^^^^^ * Update Jinja version diff --git a/glue/__init__.py b/glue/__init__.py index b804441..6d41a8f 100644 --- a/glue/__init__.py +++ b/glue/__init__.py @@ -1 +1 @@ -__version__ = '0.12' +__version__ = '0.13' diff --git a/setup.py b/setup.py index fae297f..963fcf4 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ install_requires=[ 'Pillow>=2.2.2', - 'Jinja2>2.8,<2.9', + 'Jinja2>=2.7,<2.10', ] tests_require=[ @@ -24,7 +24,7 @@ setup( name='glue', - version='0.12', + version='0.13', url='http://github.com/jorgebastida/glue', license='BSD', author='Jorge Bastida',