blob: 18545e5a2e25083ab4e2648239a41ae3cc6b72ed [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 Ronacher2acbac12007-04-11 21:49:48 +020035- fixed severe memcaching bug. Formerly it wasn't possible to use memcaching
36 without enabling disk cache.
37
Armin Ronachera22a53d2007-03-31 20:44:33 +020038
39Version 1.0
40-----------
41(released Mar 23, 2007)
42
43- Initial release