Jinja2 Changelog
================
+Version 2.5.2
+-------------
+(bugfix release, released on August 18th 2010)
+
+- improved setup.py script to better work with assumptions people
+ might still have from it (``--with-speedups``).
+- fixed a packaging error that excluded the new debug support.
+
Version 2.5.1
-------------
(bugfix release, released on August 17th 2010)
-include MANIFEST.in Makefile CHANGES LICENSE AUTHORS jinja2/_speedups.c
+include MANIFEST.in Makefile CHANGES LICENSE AUTHORS jinja2/_debugsupport.c
recursive-include docs *
recursive-include custom_fixers *
recursive-include ext *
use_2to3_fixers=['custom_fixers']
)
+# ignore the old '--with-speedups' flag
+try:
+ speedups_pos = sys.argv.index('--with-speedups')
+except IndexError:
+ pass
+else:
+ sys.argv[speedups_pos] = '--with-debugsupport'
+ print >> sys.stderr, 'the --with-speedups flag is deprecated'
+ print >> sys.stderr, 'assuming --with-debugsupport'
+ print >> sys.stderr, 'for speedups install MarkupSafe'
+
setup(
name='Jinja2',
- version='2.6',
+ version='2.5.2',
url='http://jinja.pocoo.org/',
license='BSD',
author='Armin Ronacher',