blob: 1fb0393faa53189603437d414a38b1d1caac7a1c [file] [log] [blame]
Armin Ronachera22a53d2007-03-31 20:44:33 +02001Jinja Changelog
2===============
3
4Version 1.1
5-----------
6(codename to be selected, release date unknown)
7
8- blocks now support ``{{ super() }}`` to render the parent output.
9
10- debugging system improved, smaller filesize for the cached files.
Armin Ronacher859efe02007-04-05 22:38:44 +020011 Debugging works now well for any module using linecache.
Armin Ronachera22a53d2007-03-31 20:44:33 +020012
13- added whitespace management system for the template designer.
14
15- some small bugfixes.
16
17- improved security system regarding function calls.
18
Armin Ronacher5a8e4972007-04-05 11:21:38 +020019- added `lipsum` function to generate random text.
Armin Ronachera22a53d2007-03-31 20:44:33 +020020
21- strings without unicode characters are processed as binary strings now
22 to workaround problems with `datetime.strftime` which only accepts
23 binary strings.
24
Armin Ronacher40cf47c2007-04-04 13:50:09 +020025- developer friendly traceback is now toggleable
26
27- silent variable name failure is now toggleable
28
Armin Ronacher5a8e4972007-04-05 11:21:38 +020029- fixed issue with old-style classes not implementing `__getitem__`
30 (thanks to Axel Bรถhm for discovering that bug)
31
32- added a bunch of new docstrings to the Jinja classes. Makes fun now to
33 use pydoc :-)
34
Armin Ronachera22a53d2007-03-31 20:44:33 +020035
36Version 1.0
37-----------
38(released Mar 23, 2007)
39
40- Initial release