================
- Add new configuration variable for future_imports. See issue 22
(https://github.com/Pylons/pyramid_mako/issues/22)
- Fix issue 19, whereby pyramid.reload_templates stopped functioning due to
changes in pyramid_mako. The lookup is now completed at template render,
instead of when the factory returns the renderer. See:
(https://github.com/Pylons/pyramid_mako/issues/19)
- Tuple return values in the form of ('defname', {}) are no longer supported,
and will result in a ValueError being raised.
- Fix an packaging issue whereby \*.foo files were not included in the MANIFEST.
- Caller-relative template lookup is now supported. Any template that fails
to be found in the default search paths will be searched relative to the
caller package.
- Allow overriding the ``pyramid.reload_templates`` using
``mako.reload_templates``.
- Change the way that custom user values passed to the renderer are merged with
the system provided variables. This allows the user to pass in a variable
named 'context' and have it correctly override the system provided context,
and THEN get correctly renamed so that Mako doesn't complain about a variable
being passed in that isn't allowed due to it being reserved.
- Drop testing dependency on ``nose-selecttests``.