diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-11-10 15:51:13 -0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-11-10 15:51:13 -0500 |
commit | 4ab9664a515c265238d420b0373f7225fe2e53c7 (patch) | |
tree | cf196be11b8f78431875a41b750ee3717d179e85 | |
parent | f6fd2ec74f8a4fa42c7e354daeb84aec3bf2f1ef (diff) | |
download | external_python_mako-4ab9664a515c265238d420b0373f7225fe2e53c7.tar.gz external_python_mako-4ab9664a515c265238d420b0373f7225fe2e53c7.tar.bz2 external_python_mako-4ab9664a515c265238d420b0373f7225fe2e53c7.zip |
- version bump
- changelog
-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' |