diff options
-rw-r--r-- | CHANGES | 5 | ||||
-rw-r--r-- | mako/__init__.py | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +0.7.4 +- [feature] Added future_imports parameter to Template + and TemplateLookup, renders the __future__ header + with desired capabilities at the top of the generated + template module. Courtesy Ben Trofatter. 0.7.3 - [bug] legacy_html_escape function, used when diff --git a/mako/__init__.py b/mako/__init__.py index c105665..9fa860d 100644 --- a/mako/__init__.py +++ b/mako/__init__.py @@ -5,5 +5,5 @@ # the MIT License: http://www.opensource.org/licenses/mit-license.php -__version__ = '0.7.3' +__version__ = '0.7.4' |