From 37aecf52db6f5fd52cdb9e288fde80fa45a37c19 Mon Sep 17 00:00:00 2001 From: Jorge Bastida Date: Mon, 15 May 2017 12:06:17 +0100 Subject: [PATCH] Update jinja version and bump --- docs/changelog.rst | 4 ++++ glue/__init__.py | 2 +- setup.py | 4 ++-- 3 files changed, 7 insertions(+), 3 deletions(-) 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',