blob: 9d343818cf42dc28a37c1ed7095af60f6a16dbc0 [file] [log] [blame]
Armin Ronacher9d472df2008-05-04 19:56:34 +02001Jinja2 Changelog
Armin Ronachera22a53d2007-03-31 20:44:33 +02002===============
3
Armin Ronacher9d472df2008-05-04 19:56:34 +02004Version 2.0
Armin Ronacherc689cf12007-11-18 11:23:58 +01005-----------
Armin Ronacher9d472df2008-05-04 19:56:34 +02006(codename to be selected, release around July 2008)
Armin Ronacherc689cf12007-11-18 11:23:58 +01007
Armin Ronacher6dc6f292008-06-12 08:50:07 +02008- the subscribing of objects (looking up attributes and items) changed from
9 slightly. It's now possible to give attributes or items a higher priority
10 by either using dot-notation lookup or the bracket syntax. This also
11 changed the AST slightly. `Subscript` is gone and was replaced with
12 :class:`~jinja2.nodes.Getitem` and :class:`~jinja2.nodes.Getattr`.
13
14 For more information see :ref:`the implementation details <notes-on-subscribing>`.
15
Armin Ronacher9ad96e72008-06-13 22:44:01 +020016- added support for preprocessing and token stream filtering for extensions.
17 This would allow extensions to allow simplified gettext calls in template
18 data and something similar.
19
Armin Ronacher74b51062008-06-17 11:28:59 +020020- added :meth:`jinja2.environment.TemplateStream.dump`.
21
Armin Ronacher6dc6f292008-06-12 08:50:07 +020022Version 2.0rc1
23--------------
24(no codename, released on July 9th 2008)
25
26- first release of Jinja2