Release Notes

Jinja is under heavy developement. This means that many parts of the application may change from one release to another.

Each change which might break backwards compatibility is mentioned here.

0.9 Release

This is a bugfix-only release, so backwards compatibility is maintained.

0.8 Release

Since the 0.8 release Jinja uses a new loader API. This allows users to memcache any kind of templates which wasn't possible before. If you pass the Template an old style loader it will automatically wrap it in a special conversion loader to allow you to use this loader like in older relases. This conversion loader will disappear in the 1.0 version of jinja.

This only affects custom loaders not inheriting from the default loader.

0.6 Release

Since the 0.6 release of Jinja the inheritance uses a new syntax:

{% block "blockname" %}

instead of the old one:

{% block blockname %}