blob: 77aee3f4375a3fd43b7a0cc1c35e0054a6710918 [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.
11
12- added whitespace management system for the template designer.
13
14- some small bugfixes.
15
16- improved security system regarding function calls.
17
Armin Ronacher5a8e4972007-04-05 11:21:38 +020018- added `lipsum` function to generate random text.
Armin Ronachera22a53d2007-03-31 20:44:33 +020019
20- strings without unicode characters are processed as binary strings now
21 to workaround problems with `datetime.strftime` which only accepts
22 binary strings.
23
Armin Ronacher40cf47c2007-04-04 13:50:09 +020024- developer friendly traceback is now toggleable
25
26- silent variable name failure is now toggleable
27
Armin Ronacher5a8e4972007-04-05 11:21:38 +020028- fixed issue with old-style classes not implementing `__getitem__`
29 (thanks to Axel Bรถhm for discovering that bug)
30
31- added a bunch of new docstrings to the Jinja classes. Makes fun now to
32 use pydoc :-)
33
Armin Ronachera22a53d2007-03-31 20:44:33 +020034
35Version 1.0
36-----------
37(released Mar 23, 2007)
38
39- Initial release