diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-08-28 18:04:14 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-08-28 18:04:14 -0400 |
| commit | abf4d7611349aed5427189d8a8be2cbbe227a9d2 (patch) | |
| tree | 077fc05ffdf2c3f33547af06e01f464c77bc8de8 | |
| parent | cfd2b298aadb81fd5608d8c963ffb84d1f2f143d (diff) | |
| download | external_python_mako-abf4d7611349aed5427189d8a8be2cbbe227a9d2.tar.gz external_python_mako-abf4d7611349aed5427189d8a8be2cbbe227a9d2.tar.bz2 external_python_mako-abf4d7611349aed5427189d8a8be2cbbe227a9d2.zip | |
- changelog for Martin Geisler's coding/utf-8 fixes
- version bump 0.9.1
| -rw-r--r-- | CHANGES | 6 | ||||
| -rw-r--r-- | mako/__init__.py | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,9 @@ +0.9.1 +- [bug] Changed the format of the "source encoding" header output + by the code generator to use the format ``# -*- coding:%s -*-`` + instead of ``# -*- encoding:%s -*-``; the former is more common + and compatible with emacs. Courtesy Martin Geisler. + 0.9.0 - [bug] The Context.locals_() method becomes a private underscored method, as this method has a specific internal use. The purpose diff --git a/mako/__init__.py b/mako/__init__.py index 4aa63d6..cb59f3a 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.9.0' +__version__ = '0.9.1' |
